source: rtems/testsuites/sptests/spfatal/fatal.c @ 8389628

4.104.114.84.95
Last change on this file since 8389628 was 8389628, checked in by Joel Sherrill <joel.sherrill@…>, on 04/22/96 at 16:53:46

updates from Tony Bennett

  • Property mode set to 100644
File size: 3.3 KB
Line 
1/*  Fatal Error Test
2 *
3 *  NOTE:
4 *
5 *  This test actually modifies the Configuration table and restarts
6 *  the executive.  It is very carefully constructed to do this and
7 *  uses the Configuration very carefully.
8 *
9 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
10 *  On-Line Applications Research Corporation (OAR).
11 *  All rights assigned to U.S. Government, 1994.
12 *
13 *  This material may be reproduced by or for the U.S. Government pursuant
14 *  to the copyright license under the clause at DFARS 252.227-7013.  This
15 *  notice must appear in all copies of this file and its derivatives.
16 *
17 *  $Id$
18 */
19
20#include "system.h"
21
22#include <setjmp.h>
23
24char Workspace[ 64 * 1024 ] CPU_STRUCTURE_ALIGNMENT;
25
26typedef enum {
27  FATAL_WORKSPACE_OF_ZERO,
28  FATAL_NULL_WORKSPACE,
29  FATAL_WORKSPACE_TOO_SMALL,
30  FATAL_TASK_CREATE,
31  FATAL_TASK_START
32}  Fatal_errors_t;
33
34#define FATAL_LAST FATAL_TASK_START
35
36volatile Fatal_errors_t Case_in_switch;
37
38rtems_status_code Expected_Errors[] = {
39  RTEMS_UNSATISFIED,
40  RTEMS_INVALID_ADDRESS,
41  RTEMS_UNSATISFIED,
42  RTEMS_INVALID_PRIORITY,
43  RTEMS_TASK_EXITTED
44};
45
46rtems_status_code Error_Happened[ FATAL_LAST + 1];
47
48jmp_buf Restart_Context;
49
50/*
51 *  We depend on this being zeroed during initialization.  This
52 *  occurs automatically because this is part of the BSS.
53 */
54
55rtems_unsigned32  First_Time_Through;
56
57void Process_case();
58
59rtems_extension Fatal_extension(
60  rtems_unsigned32 error,
61  boolean          is_internal
62)
63{
64  int index;
65
66  Error_Happened[ Case_in_switch ] = error;
67
68  if ( First_Time_Through == 0 ) {
69    Case_in_switch = FATAL_WORKSPACE_OF_ZERO;
70    First_Time_Through = 1;
71    setjmp( Restart_Context );
72  } else if ( Case_in_switch == FATAL_LAST ) {
73
74    /*
75     *  Depending on the C library we use, we cannot get the
76     *  task exitted error so do not check for it.
77     */
78
79    puts( "*** TEST FATAL ***" );
80    for ( index=0 ; index< FATAL_LAST ; index++ )
81      put_error( Error_Happened[ index ], Expected_Errors[ index ] );
82    puts( "NOT TESTING FATAL ERROR WHEN TASK EXITS -- C LIBRARY CATCHES THIS" );
83    puts( "*** END OF TEST FATAL ***" );
84
85    /*
86     *  returns to the default fatal error handler instead of
87     *  calling rtems_shutdown_executive
88     */
89    return;
90
91  } else {
92
93    longjmp( Restart_Context, 1 );
94  }
95
96  Process_case();
97}
98
99
100
101void Process_case()
102{
103  switch ( Case_in_switch ) {
104    case FATAL_WORKSPACE_OF_ZERO:
105      New_Configuration = BSP_Configuration;
106      New_Configuration.work_space_start = NULL;
107      Case_in_switch = FATAL_NULL_WORKSPACE;
108      break;
109
110    case FATAL_NULL_WORKSPACE:
111      New_Configuration.work_space_start = Workspace;
112      New_Configuration.work_space_size  = 256;
113      Case_in_switch = FATAL_WORKSPACE_TOO_SMALL;
114      break;
115
116    case FATAL_WORKSPACE_TOO_SMALL:
117      Initialization_tasks[ 0 ].initial_priority = RTEMS_CURRENT_PRIORITY;
118      New_Configuration.work_space_size = sizeof( Workspace );
119      Case_in_switch = FATAL_TASK_CREATE;
120      break;
121
122    case FATAL_TASK_CREATE:
123      Initialization_tasks[ 0 ].initial_priority = 1;
124      Initialization_tasks[ 0 ].entry_point      = NULL;
125      Case_in_switch = FATAL_TASK_START;
126      break;
127
128    case FATAL_TASK_START:
129      /* this extension exits the test */
130      Initialization_tasks[ 0 ].entry_point = Init;
131      break;
132  }
133  rtems_initialize_executive( &New_Configuration, &Cpu_table );
134}
135
Note: See TracBrowser for help on using the repository browser.