summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp48/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/sp48/init.c')
-rw-r--r--testsuites/sptests/sp48/init.c84
1 files changed, 84 insertions, 0 deletions
diff --git a/testsuites/sptests/sp48/init.c b/testsuites/sptests/sp48/init.c
new file mode 100644
index 0000000000..33c8315c1c
--- /dev/null
+++ b/testsuites/sptests/sp48/init.c
@@ -0,0 +1,84 @@
+/*
+ * Verify creation of semaphores with unlimited attribute works.
+ *
+ * $Id$
+ */
+
+#include <tmacros.h>
+#include <rtems/libcsupport.h>
+
+#define MAX 5000
+rtems_id Semaphores[MAX];
+
+rtems_task Init(rtems_task_argument ignored)
+{
+ rtems_status_code sc;
+ int i;
+ int created;
+
+ puts( "\n\n*** TEST 48 ***" );
+
+ printf( "Largest C program heap block available: %d\n", malloc_free_space() );
+ for (i=0 ; i<MAX ; i++ ) {
+ sc = rtems_semaphore_create(
+ rtems_build_name('s', 'e', 'm', ' '),
+ 1,
+ RTEMS_DEFAULT_ATTRIBUTES,
+ 0,
+ &Semaphores[i]
+ );
+ /* printf("Creating %i id=0x%08x\n", i, Semaphores[i]); */
+
+ if (sc == RTEMS_TOO_MANY) {
+ printf("We run out at %i!\n", i);
+ break;
+ }
+ if (sc != RTEMS_SUCCESSFUL) {
+ printf("FAILED creating at %i\n", i);
+ directive_failed( sc, "rtems_semaphore_create " );
+ rtems_test_exit( 0 );
+ }
+ }
+
+ created = i;
+ if ( created == MAX )
+ puts( "Created all semaphores allowed in this test" );
+
+ printf( "%d semaphores created\n", i );
+ printf( "Largest C program heap block available: %d\n", malloc_free_space() );
+
+ for ( i-- ; i ; i-- ) {
+ sc = rtems_semaphore_delete( Semaphores[i] );
+ if (sc != RTEMS_SUCCESSFUL) {
+ printf("FAILED deleting at %i\n", i);
+ directive_failed( sc, "rtems_semaphore_delete " );
+ rtems_test_exit( 0 );
+ }
+ }
+
+ printf( "%d semaphores successfully deleted\n", created );
+ printf( "Largest C program heap block available: %d\n", malloc_free_space() );
+
+ puts( "*** END OF TEST 48 ***" );
+ rtems_test_exit( 0 );
+}
+
+/* configuration stuff */
+
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
+
+#define CONFIGURE_MAXIMUM_TASKS 1
+#define CONFIGURE_MAXIMUM_SEMAPHORES rtems_resource_unlimited(5)
+#if 1
+ #define CONFIGURE_UNIFIED_WORK_AREAS
+#else
+ #define CONFIGURE_MEMORY_OVERHEAD 1024
+#endif
+
+#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
+
+#define CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM
+
+#define CONFIGURE_INIT
+#include <rtems/confdefs.h>