summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spstkalloc02
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2014-05-05 09:47:30 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2014-05-06 18:31:00 -0500
commit3324383ce03f3d70a652f99291209e768d89c691 (patch)
tree152c8952e269ac8ac7bc5c90290fce9379a21e8a /testsuites/sptests/spstkalloc02
parentmultiple BSPs: Remove BSP_SMALL_MEMORY (diff)
downloadrtems-3324383ce03f3d70a652f99291209e768d89c691.tar.bz2
testsuites: Remove BSP_SMALL_MEMORY
Diffstat (limited to 'testsuites/sptests/spstkalloc02')
-rw-r--r--testsuites/sptests/spstkalloc02/init.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/testsuites/sptests/spstkalloc02/init.c b/testsuites/sptests/spstkalloc02/init.c
index 7fb5fd2fb1..a01bc5c4bd 100644
--- a/testsuites/sptests/spstkalloc02/init.c
+++ b/testsuites/sptests/spstkalloc02/init.c
@@ -28,8 +28,6 @@
const char rtems_test_name[] = "SPSTKALLOC 2";
-#if !BSP_SMALL_MEMORY
-
#include <stdio.h>
#include <inttypes.h>
@@ -164,26 +162,3 @@ static void task_stack_free(void *addr)
{
_Heap_Free(&task_stack_heap, addr);
}
-
-#else /* BSP_SMALL_MEMORY */
-
-static void Init(rtems_task_argument arg)
-{
- TEST_BEGIN();
- puts("NOT ENOUGH MEMORY TO RUN TEST");
-
- rtems_test_exit(0);
-}
-
-#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
-#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
-
-#define CONFIGURE_MAXIMUM_TASKS 1
-
-#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
-
-#define CONFIGURE_INIT
-
-#include <rtems/confdefs.h>
-
-#endif /* BSP_SMALL_MEMORY */