source: rtems/testsuites/libtests/stackchk/init.c @ 5d1d348

5
Last change on this file since 5d1d348 was 5d1d348, checked in by Sebastian Huber <sebastian.huber@…>, on 02/25/20 at 06:13:55

libtests/stackchk: Include missing header file

Update #3875.

  • Property mode set to 100644
File size: 2.7 KB
Line 
1/*  Init
2 *
3 *  This routine is the initialization task for this test program.
4 *  It is a user initialization task and has the responsibility for creating
5 *  and starting the tasks that make up the test.  If the time of day
6 *  clock is required for the test, it should also be set to a known
7 *  value by this function.
8 *
9 *  Input parameters:
10 *    argument - task argument
11 *
12 *  Output parameters:  NONE
13 *
14 *  COPYRIGHT (c) 1989-1999.
15 *  On-Line Applications Research Corporation (OAR).
16 *
17 *  The license and distribution terms for this file may be
18 *  found in the file LICENSE in this distribution or at
19 *  http://www.rtems.org/license/LICENSE.
20 */
21
22#ifdef HAVE_CONFIG_H
23#include "config.h"
24#endif
25
26#define CONFIGURE_INIT
27#include "system.h"
28
29#include <rtems/bspIo.h>
30
31const char rtems_test_name[] = "STACKCHK";
32
33rtems_task Init(
34  rtems_task_argument argument
35)
36{
37  rtems_time_of_day time;
38  rtems_status_code status;
39
40  TEST_BEGIN();
41
42  build_time( &time, 12, 31, 1988, 9, 0, 0, 0 );
43  status = rtems_clock_set( &time );
44  directive_failed( status, "rtems_clock_set" );
45
46  Task_name[ 1 ] = rtems_build_name( 'T', 'A', '1', ' ' );
47  Task_name[ 2 ] = rtems_build_name( 'T', 'A', '2', ' ' );
48  Task_name[ 3 ] = rtems_build_name( 'T', 'A', '3', ' ' );
49
50  status = rtems_task_create(
51     Task_name[ 1 ],
52     1,
53     TASK_STACK_SIZE,
54     RTEMS_DEFAULT_MODES,
55     RTEMS_DEFAULT_ATTRIBUTES,
56     &Task_id[ 1 ]
57  );
58  directive_failed( status, "rtems_task_create of TA1" );
59
60  status = rtems_task_create(
61     Task_name[ 2 ],
62     1,
63     TASK_STACK_SIZE,
64     RTEMS_DEFAULT_MODES,
65     RTEMS_DEFAULT_ATTRIBUTES,
66     &Task_id[ 2 ]
67  );
68  directive_failed( status, "rtems_task_create of TA2" );
69
70  status = rtems_task_create(
71     Task_name[ 3 ],
72     1,
73     TASK_STACK_SIZE,
74     RTEMS_DEFAULT_MODES,
75     RTEMS_DEFAULT_ATTRIBUTES,
76     &Task_id[ 3 ]
77  );
78  directive_failed( status, "rtems_task_create of TA3" );
79
80  status = rtems_task_start( Task_id[ 1 ], Task_1_through_3, 0 );
81  directive_failed( status, "rtems_task_start of TA1" );
82
83  status = rtems_task_start( Task_id[ 2 ], Task_1_through_3, 0 );
84  directive_failed( status, "rtems_task_start of TA2" );
85
86  status = rtems_task_start( Task_id[ 3 ], Task_1_through_3, 0 );
87  directive_failed( status, "rtems_task_start of TA3" );
88
89  rtems_task_exit();
90}
91
92void Fatal_extension(
93  rtems_fatal_source source,
94  bool               always_set_to_false,
95  rtems_fatal_code   error
96)
97{
98  if ( source != RTEMS_FATAL_SOURCE_STACK_CHECKER ) {
99    printk( "unexpected fatal source\n" );
100  } else if ( always_set_to_false ) {
101    printk( "unexpected fatal is internal\n" );
102  } else if ( error != rtems_build_name( 'T', 'A', '1', ' ' ) ) {
103    printk( "unexpected fatal error\n" );
104  } else {
105    TEST_END();
106  }
107}
Note: See TracBrowser for help on using the repository browser.