summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp41
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-07-24 20:43:06 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-07-24 20:43:06 +0000
commiteecb54552d93d0a2791811cac96a34e9efad5311 (patch)
treec37d6d302e48aaa84f9f1f0c5dc6171126b6bc19 /testsuites/sptests/sp41
parent2009-07-24 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-eecb54552d93d0a2791811cac96a34e9efad5311.tar.bz2
2009-07-24 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.am, configure.ac: Add new test to exercise odd case in rtems_iterate_over_all_threads. * sp41/.cvsignore, sp41/Makefile.am, sp41/init.c, sp41/sp41.doc, sp41/sp41.scn: New files.
Diffstat (limited to 'testsuites/sptests/sp41')
-rw-r--r--testsuites/sptests/sp41/.cvsignore2
-rw-r--r--testsuites/sptests/sp41/Makefile.am28
-rw-r--r--testsuites/sptests/sp41/init.c52
-rw-r--r--testsuites/sptests/sp41/sp41.doc23
-rw-r--r--testsuites/sptests/sp41/sp41.scn4
5 files changed, 109 insertions, 0 deletions
diff --git a/testsuites/sptests/sp41/.cvsignore b/testsuites/sptests/sp41/.cvsignore
new file mode 100644
index 0000000000..282522db03
--- /dev/null
+++ b/testsuites/sptests/sp41/.cvsignore
@@ -0,0 +1,2 @@
+Makefile
+Makefile.in
diff --git a/testsuites/sptests/sp41/Makefile.am b/testsuites/sptests/sp41/Makefile.am
new file mode 100644
index 0000000000..8e445a6b1f
--- /dev/null
+++ b/testsuites/sptests/sp41/Makefile.am
@@ -0,0 +1,28 @@
+##
+## $Id$
+##
+
+MANAGERS = all
+
+rtems_tests_PROGRAMS = sp41
+sp41_SOURCES = init.c
+
+dist_rtems_tests_DATA = sp41.scn
+dist_rtems_tests_DATA += sp41.doc
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../automake/compile.am
+include $(top_srcdir)/../automake/leaf.am
+
+sp41_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
+
+AM_CPPFLAGS += -I$(top_srcdir)/../support/include
+
+LINK_OBJS = $(sp41_OBJECTS) $(sp41_LDADD)
+LINK_LIBS = $(sp41_LDLIBS)
+
+sp41$(EXEEXT): $(sp41_OBJECTS) $(sp41_DEPENDENCIES)
+ @rm -f sp41$(EXEEXT)
+ $(make-exe)
+
+include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/sptests/sp41/init.c b/testsuites/sptests/sp41/init.c
new file mode 100644
index 0000000000..b28ec433c6
--- /dev/null
+++ b/testsuites/sptests/sp41/init.c
@@ -0,0 +1,52 @@
+/*
+ * COPYRIGHT (c) 1989-2009.
+ * 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 __RTEMS_VIOLATE_KERNEL_VISIBILITY__
+#include <tmacros.h>
+
+void iterator(
+ Thread_Control *thread
+)
+{
+}
+
+rtems_task Init(
+ rtems_task_argument ignored
+)
+{
+ void *tmp;
+
+ puts( "\n\n*** TEST 41 ***" );
+
+ puts( "Init - overwrite internal value to trip case" );
+ tmp = _Objects_Information_table[ OBJECTS_CLASSIC_API ][ 1 ];
+ _Objects_Information_table[ OBJECTS_CLASSIC_API ][ 1 ] = NULL;
+
+ puts( "Init - rtems_iterate_over_all_threads" );
+ rtems_iterate_over_all_threads(iterator);
+ _Objects_Information_table[ OBJECTS_CLASSIC_API ][ 1 ] = tmp;
+
+ puts( "*** END OF TEST 41 ***" );
+ rtems_test_exit(0);
+}
+
+/* configuration information */
+
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
+
+#define CONFIGURE_MAXIMUM_TASKS 1
+#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
+
+#define CONFIGURE_INIT
+#include <rtems/confdefs.h>
+
+/* global variables */
diff --git a/testsuites/sptests/sp41/sp41.doc b/testsuites/sptests/sp41/sp41.doc
new file mode 100644
index 0000000000..87ca854f6b
--- /dev/null
+++ b/testsuites/sptests/sp41/sp41.doc
@@ -0,0 +1,23 @@
+#
+# $Id$
+#
+# COPYRIGHT (c) 1989-2009.
+# 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.
+#
+
+This file describes the directives and concepts tested by this test set.
+
+test set name: sp41
+
+directives:
+
+ rtems_iterate_over_all_threads
+
+concepts:
+
++ Ensure that the case where an API has not install a thread pointer table
+ is handled correctly.
diff --git a/testsuites/sptests/sp41/sp41.scn b/testsuites/sptests/sp41/sp41.scn
new file mode 100644
index 0000000000..02933ae252
--- /dev/null
+++ b/testsuites/sptests/sp41/sp41.scn
@@ -0,0 +1,4 @@
+*** TEST 41 ***
+Init - overwrite internal value to trip case
+Init - rtems_iterate_over_all_threads
+*** END OF TEST 41 ***