source: rtems/testsuites/libtests/stackchk/init.c @ d3b0fe08

4.115
Last change on this file since d3b0fe08 was a12f7e9, checked in by Sebastian Huber <sebastian.huber@…>, on 11/14/12 at 14:10:46

score: Add RTEMS_FATAL_SOURCE_STACK_CHECKER

  • 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.com/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
29rtems_task Init(
30  rtems_task_argument argument
31)
32{
33  rtems_time_of_day time;
34  rtems_status_code status;
35
36  puts( "\n\n*** TEST STACK CHECKER ***" );
37
38  build_time( &time, 12, 31, 1988, 9, 0, 0, 0 );
39  status = rtems_clock_set( &time );
40  directive_failed( status, "rtems_clock_set" );
41
42  Task_name[ 1 ] = rtems_build_name( 'T', 'A', '1', ' ' );
43  Task_name[ 2 ] = rtems_build_name( 'T', 'A', '2', ' ' );
44  Task_name[ 3 ] = rtems_build_name( 'T', 'A', '3', ' ' );
45
46  status = rtems_task_create(
47     Task_name[ 1 ],
48     1,
49     TASK_STACK_SIZE,
50     RTEMS_DEFAULT_MODES,
51     RTEMS_DEFAULT_ATTRIBUTES,
52     &Task_id[ 1 ]
53  );
54  directive_failed( status, "rtems_task_create of TA1" );
55
56  status = rtems_task_create(
57     Task_name[ 2 ],
58     1,
59     TASK_STACK_SIZE,
60     RTEMS_DEFAULT_MODES,
61     RTEMS_DEFAULT_ATTRIBUTES,
62     &Task_id[ 2 ]
63  );
64  directive_failed( status, "rtems_task_create of TA2" );
65
66  status = rtems_task_create(
67     Task_name[ 3 ],
68     1,
69     TASK_STACK_SIZE,
70     RTEMS_DEFAULT_MODES,
71     RTEMS_DEFAULT_ATTRIBUTES,
72     &Task_id[ 3 ]
73  );
74  directive_failed( status, "rtems_task_create of TA3" );
75
76  status = rtems_task_start( Task_id[ 1 ], Task_1_through_3, 0 );
77  directive_failed( status, "rtems_task_start of TA1" );
78
79  status = rtems_task_start( Task_id[ 2 ], Task_1_through_3, 0 );
80  directive_failed( status, "rtems_task_start of TA2" );
81
82  status = rtems_task_start( Task_id[ 3 ], Task_1_through_3, 0 );
83  directive_failed( status, "rtems_task_start of TA3" );
84
85  status = rtems_task_delete( RTEMS_SELF );
86  directive_failed( status, "rtems_task_delete of RTEMS_SELF" );
87}
88
89void Fatal_extension( uint32_t source, bool is_internal, uint32_t error )
90{
91  if ( source != RTEMS_FATAL_SOURCE_STACK_CHECKER ) {
92    printk( "unexpected fatal source\n" );
93  } else if ( is_internal ) {
94    printk( "unexpected fatal is internal\n" );
95  } else if ( error != rtems_build_name( 'T', 'A', '1', ' ' ) ) {
96    printk( "unexpected fatal error\n" );
97  } else {
98    printk( "*** END OF TEST STACK CHECKER ***\n" );
99  }
100}
Note: See TracBrowser for help on using the repository browser.