summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp42/sp42.doc
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-07-30 17:10:04 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-07-30 17:10:04 +0000
commit7e260d67ad4fb494461ccac35a3a6dca71f7e1e8 (patch)
tree84671b35bc41f9ccf3e3149ba6d9c03e4cdc8767 /testsuites/sptests/sp42/sp42.doc
parentEnable data cache. (diff)
downloadrtems-7e260d67ad4fb494461ccac35a3a6dca71f7e1e8.tar.bz2
2009-07-30 Joel Sherrill <joel.sherrill@OARcorp.com>
* sp42/Makefile.am, sp42/init.c, sp42/sp42.scn: Test was testing the wrong thing in a cpp macro. Added contents to screen file and add documentation file. * sp42/sp42.doc: New file.
Diffstat (limited to 'testsuites/sptests/sp42/sp42.doc')
-rw-r--r--testsuites/sptests/sp42/sp42.doc38
1 files changed, 38 insertions, 0 deletions
diff --git a/testsuites/sptests/sp42/sp42.doc b/testsuites/sptests/sp42/sp42.doc
new file mode 100644
index 0000000000..9b7f6abfc9
--- /dev/null
+++ b/testsuites/sptests/sp42/sp42.doc
@@ -0,0 +1,38 @@
+#
+# $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: sp42
+
+directives:
+
+ rtems_semaphore_create
+ rtems_semaphore_obtain
+ rtems_semaphore_release
+ rtems_semaphore_delete
+ rtems_task_create
+ rtems_task_delete
+ rtems_task_start
+ really exercising various Thread Queue capabilities:
+ _Thread_queue_Enqueue_FIFO
+ _Thread_queue_Enqueue_priority
+ _Thread_queue_Dequeue_FIFO
+ _Thread_queue_Dequeue_priority
+
+concepts:
+
++ This test is very carefully constructed to exercise the data structure
+ used to implement the priority blocking chains in the Thread Queue. The
+ task priorities used force forward and reverse searches and use of the
+ 2-n chains
++ This test also ensures that the dequeues are performed in the correct
+ order.