summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spfatal06
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-04 21:28:56 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-04 21:28:56 +0000
commitd329acf46d3b1b24cb5f0d3e16ed4df9e0278b07 (patch)
tree59b6792d1919b72196c688cb9da6ccfe4392dafc /testsuites/sptests/spfatal06
parent2009-09-04 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-d329acf46d3b1b24cb5f0d3e16ed4df9e0278b07.tar.bz2
2009-09-04 Joel Sherrill <joel.sherrill@oarcorp.com>
* spfatal01/spfatal01.scn, spfatal01/testcase.h, spfatal02/spfatal02.scn, spfatal02/testcase.h, spfatal03/spfatal03.scn, spfatal03/testcase.h, spfatal04/spfatal04.scn, spfatal04/testcase.h, spfatal05/spfatal05.scn, spfatal05/testcase.h, spfatal06/spfatal06.scn, spfatal06/testcase.h, spfatal07/spfatal07.scn, spfatal07/testcase.h, spfatal08/spfatal08.scn, spfatal08/testcase.h, spfatal09/spfatal09.scn, spfatal09/testcase.h, spfatal10/Makefile.am, spfatal10/spfatal10.scn, spfatal11/Makefile.am, spfatal11/spfatal11.scn, spfatal12/Makefile.am, spfatal12/spfatal12.scn, spfatal_support/init.c: Make all fatal error tests use testcase.h and spfatal_support framework. Print test name herald in all cases. * spfatal10/testcase.h, spfatal11/testcase.h, spfatal12/testcase.h: New files. * spfatal10/init.c, spfatal11/init.c, spfatal12/init.c: Removed.
Diffstat (limited to 'testsuites/sptests/spfatal06')
-rw-r--r--testsuites/sptests/spfatal06/spfatal06.scn1
-rw-r--r--testsuites/sptests/spfatal06/testcase.h10
2 files changed, 7 insertions, 4 deletions
diff --git a/testsuites/sptests/spfatal06/spfatal06.scn b/testsuites/sptests/spfatal06/spfatal06.scn
index 31c65088b7..56fbbb2125 100644
--- a/testsuites/sptests/spfatal06/spfatal06.scn
+++ b/testsuites/sptests/spfatal06/spfatal06.scn
@@ -1 +1,2 @@
+*** TEST FATAL 6 ***
Fatal error (Core initialize with invalid stack hook) hit
diff --git a/testsuites/sptests/spfatal06/testcase.h b/testsuites/sptests/spfatal06/testcase.h
index d17f7792ce..36d3173def 100644
--- a/testsuites/sptests/spfatal06/testcase.h
+++ b/testsuites/sptests/spfatal06/testcase.h
@@ -31,14 +31,16 @@ rtems_initialization_tasks_table Initialization_tasks[] = {
#define CONFIGURE_INIT_TASK_TABLE_SIZE \
sizeof(CONFIGURE_INIT_TASK_TABLE) / sizeof(rtems_initialization_tasks_table)
-#define FATAL_ERROR_DESCRIPTION "Core initialize with invalid stack hook"
+#define FATAL_ERROR_TEST_NAME "6"
+#define FATAL_ERROR_DESCRIPTION \
+ "Core initialize with invalid stack hook"
#define FATAL_ERROR_EXPECTED_SOURCE INTERNAL_ERROR_CORE
#define FATAL_ERROR_EXPECTED_IS_INTERNAL TRUE
#define FATAL_ERROR_EXPECTED_ERROR INTERNAL_ERROR_BAD_STACK_HOOK
-void *New_stack_allocate_hook(uint32_t unused);
+void *New_stack_allocate_hook(size_t unused);
-void *New_stack_allocate_hook(uint32_t unused)
+void *New_stack_allocate_hook(size_t unused)
{
}
@@ -47,7 +49,7 @@ void force_error()
if (Configuration.stack_free_hook != NULL)
Configuration.stack_allocate_hook = NULL;
else
- Configuration.stack_allocate_hook = &New_stack_allocate_hook;
+ Configuration.stack_allocate_hook = New_stack_allocate_hook;
rtems_initialize_data_structures();
/* we will not run this far */