summaryrefslogtreecommitdiffstats
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
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.
-rw-r--r--testsuites/sptests/ChangeLog7
-rw-r--r--testsuites/sptests/Makefile.am2
-rw-r--r--testsuites/sptests/configure.ac1
-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
8 files changed, 118 insertions, 1 deletions
diff --git a/testsuites/sptests/ChangeLog b/testsuites/sptests/ChangeLog
index c3595b0a38..eca0160445 100644
--- a/testsuites/sptests/ChangeLog
+++ b/testsuites/sptests/ChangeLog
@@ -1,3 +1,10 @@
+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.
+
2009-07-23 Joel Sherrill <joel.sherrill@OARcorp.com>
* sp36/strict_order_mut.c: Simple binary semaphores cannot have an
diff --git a/testsuites/sptests/Makefile.am b/testsuites/sptests/Makefile.am
index 0fa0bc0c1b..c0355d0f9f 100644
--- a/testsuites/sptests/Makefile.am
+++ b/testsuites/sptests/Makefile.am
@@ -11,7 +11,7 @@ SUBDIRS = \
sp10 sp11 sp12 sp13 sp14 sp15 sp16 sp17 sp19 \
sp20 sp21 sp22 sp23 sp24 sp25 sp26 sp27 sp27a sp28 sp29 \
sp30 sp31 sp32 sp33 sp34 sp35 sp37 sp38 sp39 \
- sp40 sp42 sp43 sp44 sp45 sp46 sp47 sp48 sp49 \
+ sp40 sp41 sp42 sp43 sp44 sp45 sp46 sp47 sp48 sp49 \
sp50 sp51 sp52 sp53 sp54 sp55 sp56 sp57 sp58 sp59 \
sp60 sp61 \
spchain spobjgetnext spprintk spsize spstkalloc spthreadq01 \
diff --git a/testsuites/sptests/configure.ac b/testsuites/sptests/configure.ac
index 31d32cb533..9b6c2a1490 100644
--- a/testsuites/sptests/configure.ac
+++ b/testsuites/sptests/configure.ac
@@ -66,6 +66,7 @@ sp37/Makefile
sp38/Makefile
sp39/Makefile
sp40/Makefile
+sp41/Makefile
sp42/Makefile
sp43/Makefile
sp44/Makefile
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 ***