summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/gxx02/init.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2010-08-23 08:32:52 +0000
committerSebastian Huber <sebastian.huber@embedded-brains.de>2010-08-23 08:32:52 +0000
commitb89e4cd89cc6c3747da52a7a8f3b0514fe33359e (patch)
treeb68d242d6df6ff838ead08cf5163331bfca01cf2 /testsuites/libtests/gxx02/init.c
parent2010-08-23 Sebastian Huber <sebastian.huber@embedded-brains.de> (diff)
downloadrtems-b89e4cd89cc6c3747da52a7a8f3b0514fe33359e.tar.bz2
2010-08-23 Sebastian Huber <sebastian.huber@embedded-brains.de>
* gxx01/gxx_wrappers.h, gxx02/.cvsignore, gxx02/Makefile.am, gxx02/gxx02.doc, gxx02/gxx02.scn, gxx02/init.c: Removed files. * Makefile.am, configure.ac: Reflect changes above. * gxx01/init.c: Removed fatal error test case.
Diffstat (limited to '')
-rw-r--r--testsuites/libtests/gxx02/init.c56
1 files changed, 0 insertions, 56 deletions
diff --git a/testsuites/libtests/gxx02/init.c b/testsuites/libtests/gxx02/init.c
deleted file mode 100644
index babf4e6b77..0000000000
--- a/testsuites/libtests/gxx02/init.c
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * 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$
- */
-
-#include <tmacros.h>
-#include "test_support.h"
-#include "gxx_wrappers.h"
-#include <rtems/score/heap.h>
-
-rtems_task Init(
- rtems_task_argument argument
-)
-{
-
- void *alloc_ptr = (void *)0;
- Heap_Information_block Info;
- __gthread_key_t key = 0;
- int status = 0;
- void *retptr;
-
- puts( "\n\n*** TEST GXX 02 ***" );
-
- puts( "Init - allocating most of workspace memory" );
- status = rtems_workspace_get_information( &Info );
- rtems_test_assert( status == true );
- status = rtems_workspace_allocate( Info.Free.largest - 4, &alloc_ptr );
- rtems_test_assert( status == true );
-
- puts( "rtems_gxx_getspecific() - panic and exit" );
-
- puts( "*** END OF TEST GXX 02 ***" );
-
- /* The below call will not return and hence the END OF above */
- retptr = rtems_gxx_getspecific( key );
-}
-
-/* configuration information */
-
-#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
-#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
-
-#define CONFIGURE_MAXIMUM_TASKS 1
-#define CONFIGURE_MAXIMUM_SEMAPHORES 2
-#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
-
-#define CONFIGURE_INIT
-
-#include <rtems/confdefs.h>
-/* end of file */