source: rtems/testsuites/sptests/spfatal07/testcase.h @ 183af89

4.115
Last change on this file since 183af89 was 3c83d57a, checked in by Sebastian Huber <sebastian.huber@…>, on 09/27/11 at 13:22:32

2011-09-27 Sebastian Huber <sebastian.huber@…>

  • spfatal07/testcase.h: Print end of test if test is not applicable.
  • Property mode set to 100644
File size: 1.7 KB
Line 
1/*
2 * Classic API Init task create failure
3 *
4 *  COPYRIGHT (c) 1989-2011.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  $Id$
12 */
13
14/*
15 *  Way too much stack space.  Should generate a fatal error
16 *  on the init task create.
17 */
18#define CONFIGURE_HAS_OWN_INIT_TASK_TABLE
19#define CONFIGURE_INIT_TASK_STACK_SIZE   RTEMS_MINIMUM_STACK_SIZE
20rtems_initialization_tasks_table Initialization_tasks[] = {
21  { rtems_build_name('I', 'N', 'I', ' '),
22    RTEMS_MINIMUM_STACK_SIZE,
23    1,
24    RTEMS_DEFAULT_ATTRIBUTES,
25    Init,
26    RTEMS_DEFAULT_MODES,
27    0
28  }
29};
30#define CONFIGURE_INIT_TASK_TABLE Initialization_tasks
31#define CONFIGURE_INIT_TASK_TABLE_SIZE \
32  sizeof(CONFIGURE_INIT_TASK_TABLE) / sizeof(rtems_initialization_tasks_table)
33
34#define FATAL_ERROR_TEST_NAME            "7"
35#define FATAL_ERROR_DESCRIPTION \
36        "Core Configuration Invalid ISR stack size"
37#define FATAL_ERROR_EXPECTED_SOURCE      INTERNAL_ERROR_CORE
38#define FATAL_ERROR_EXPECTED_IS_INTERNAL TRUE
39#define FATAL_ERROR_EXPECTED_ERROR       \
40          INTERNAL_ERROR_INTERRUPT_STACK_TOO_SMALL
41
42void force_error()
43{
44  #if (CPU_ALLOCATE_INTERRUPT_STACK == TRUE)
45    Configuration.interrupt_stack_size = (STACK_MINIMUM_SIZE-1);
46    rtems_initialize_data_structures();
47  #else
48    printk(
49      "WARNING - Test not applicable on this target architecture.\n"
50      "WARNING - Only applicable when CPU_ALLOCATE_INTERRUPT_STACK == TRUE.\n"
51      "*** END OF TEST FATAL " FATAL_ERROR_TEST_NAME " ***\n"
52    );
53    rtems_test_exit(0);
54  #endif
55
56  /* we will not run this far */
57}
Note: See TracBrowser for help on using the repository browser.