source: rtems/testsuites/sptests/spfatal07/testcase.h @ 6091bc3a

4.115
Last change on this file since 6091bc3a was 6091bc3a, checked in by Sebastian Huber <sebastian.huber@…>, on 07/07/10 at 09:03:34

2010-07-08 Sebastian Huber <sebastian.huber@…>

  • spfatal09/.cvsignore, spfatal09/Makefile.am, spfatal09/spfatal09.doc, spfatal09/spfatal09.scn, spfatal09/testcase.h: Removed files.
  • Makefile.am, configure.ac: Reflect changes above.
  • spfatal_support/init.c: Print end of test message in case of success. Stop multitasking in the fatal error extension.
  • spfatal03/testcase.h, spfatal07/testcase.h: Use printk() instead of puts().
  • spfatal01/spfatal01.scn, spfatal02/spfatal02.scn, spfatal03/spfatal03.scn, spfatal04/spfatal04.scn, spfatal05/spfatal05.scn, spfatal06/spfatal06.scn, spfatal07/spfatal07.scn, spfatal08/spfatal08.scn, spfatal10/spfatal10.scn, spfatal11/spfatal11.scn, spfatal12/spfatal12.scn, spfatal13/spfatal13.scn, spfatal14/spfatal14.scn, spfatal15/spfatal15.scn, spfatal16/spfatal16.scn, spfatal17/spfatal17.scn, spfatal18/spfatal18.scn, spfatal19/spfatal19.scn, spfatal20/spfatal20.scn: Update.
  • Property mode set to 100644
File size: 1.6 KB
RevLine 
[5fdb1e7b]1/*
2 * Classic API Init task create failure
3 *
[bb9c80df]4 *  COPYRIGHT (c) 1989-2008.
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 *
[5fdb1e7b]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
[d329acf4]34#define FATAL_ERROR_TEST_NAME            "7"
35#define FATAL_ERROR_DESCRIPTION \
36        "Core Configuration Invalid ISR stack size"
[5fdb1e7b]37#define FATAL_ERROR_EXPECTED_SOURCE      INTERNAL_ERROR_CORE
38#define FATAL_ERROR_EXPECTED_IS_INTERNAL TRUE
39#define FATAL_ERROR_EXPECTED_ERROR       INTERNAL_ERROR_INTERRUPT_STACK_TOO_SMALL
40
41void force_error()
42{
[b1274bd9]43  #if (CPU_ALLOCATE_INTERRUPT_STACK == TRUE)
[d4f932c9]44    Configuration.interrupt_stack_size = (STACK_MINIMUM_SIZE-1);
45    rtems_initialize_data_structures();
46  #else
[6091bc3a]47    printk(
[d4f932c9]48      "WARNING - Test not applicable on this target architecture.\n"
[6091bc3a]49      "WARNING - Only applicable when CPU_ALLOCATE_INTERRUPT_STACK == TRUE.\n"
[d4f932c9]50    );
51    rtems_test_exit(0);
52  #endif
[b1274bd9]53
[5fdb1e7b]54  /* we will not run this far */
55}
Note: See TracBrowser for help on using the repository browser.