source: rtems/testsuites/sptests/spfatal07/testcase.h @ 03b7789

4.115
Last change on this file since 03b7789 was 03b7789, checked in by Sebastian Huber <sebastian.huber@…>, on 04/26/14 at 13:09:10

score: Statically initialize _ISR_Vector_table

  • 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.org/license/LICENSE.
10 */
11
12/*
13 *  Way too much stack space.  Should generate a fatal error
14 *  on the init task create.
15 */
16#define CONFIGURE_HAS_OWN_INIT_TASK_TABLE
17#define CONFIGURE_INIT_TASK_STACK_SIZE   RTEMS_MINIMUM_STACK_SIZE
18rtems_initialization_tasks_table Initialization_tasks[] = {
19  { rtems_build_name('I', 'N', 'I', ' '),
20    RTEMS_MINIMUM_STACK_SIZE,
21    1,
22    RTEMS_DEFAULT_ATTRIBUTES,
23    Init,
24    RTEMS_DEFAULT_MODES,
25    0
26  }
27};
28#define CONFIGURE_INIT_TASK_TABLE Initialization_tasks
29#define CONFIGURE_INIT_TASK_TABLE_SIZE \
30  sizeof(CONFIGURE_INIT_TASK_TABLE) / sizeof(rtems_initialization_tasks_table)
31
32#define FATAL_ERROR_TEST_NAME            "7"
33#define FATAL_ERROR_DESCRIPTION \
34        "Core Configuration Invalid ISR stack size"
35#define FATAL_ERROR_EXPECTED_SOURCE      INTERNAL_ERROR_CORE
36#define FATAL_ERROR_EXPECTED_IS_INTERNAL TRUE
37#define FATAL_ERROR_EXPECTED_ERROR       \
38          INTERNAL_ERROR_INTERRUPT_STACK_TOO_SMALL
39
40#if CPU_ALLOCATE_INTERRUPT_STACK == TRUE
41  #define CONFIGURE_INTERRUPT_STACK_SIZE (STACK_MINIMUM_SIZE - 1)
42#endif
43
44void force_error()
45{
46  #if (CPU_ALLOCATE_INTERRUPT_STACK == TRUE)
47    /* we will not run this far */
48  #else
49    printk(
50      "WARNING - Test not applicable on this target architecture.\n"
51      "WARNING - Only applicable when CPU_ALLOCATE_INTERRUPT_STACK == TRUE.\n"
52      "*** END OF TEST FATAL " FATAL_ERROR_TEST_NAME " ***\n"
53    );
54    rtems_test_exit(0);
55  #endif
56}
Note: See TracBrowser for help on using the repository browser.