summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spfatal21/testcase.h
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/spfatal21/testcase.h')
-rw-r--r--testsuites/sptests/spfatal21/testcase.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/testsuites/sptests/spfatal21/testcase.h b/testsuites/sptests/spfatal21/testcase.h
new file mode 100644
index 0000000000..ab2a26e7bc
--- /dev/null
+++ b/testsuites/sptests/spfatal21/testcase.h
@@ -0,0 +1,35 @@
+/*
+ * COPYRIGHT (c) 1989-2010.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+#define FATAL_ERROR_TEST_NAME "FATAL 21"
+#define FATAL_ERROR_DESCRIPTION "sbrk during init fails"
+#define FATAL_ERROR_EXPECTED_SOURCE INTERNAL_ERROR_RTEMS_API
+#define FATAL_ERROR_EXPECTED_IS_INTERNAL FALSE
+#define FATAL_ERROR_EXPECTED_ERROR RTEMS_NO_MEMORY
+
+#include <rtems/libcsupport.h>
+#include <rtems/malloc.h>
+
+/* Safe information on real heap */
+extern rtems_malloc_sbrk_functions_t *rtems_malloc_sbrk_helpers;
+extern rtems_malloc_sbrk_functions_t rtems_malloc_sbrk_helpers_table;
+
+void * sbrk(ptrdiff_t incr)
+{
+ return (void *) -1;
+}
+
+void force_error()
+{
+ rtems_malloc_sbrk_helpers = &rtems_malloc_sbrk_helpers_table;
+
+ RTEMS_Malloc_Initialize( NULL, 0, 64 );
+}