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.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/testsuites/sptests/spfatal21/testcase.h b/testsuites/sptests/spfatal21/testcase.h
deleted file mode 100644
index 788f06be5e..0000000000
--- a/testsuites/sptests/spfatal21/testcase.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * COPYRIGHT (c) 1989-2012.
- * 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.
- */
-
-#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>
-#include <unistd.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 );
-}