summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp26
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-08-02 00:52:14 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-08-02 00:52:14 +0000
commit3aa4c2e0cec61dc0673d3b0ef40a124f64d917e0 (patch)
treeb5bd37bb4e83f9beded8b15a6cdac822702bd2fa /testsuites/sptests/sp26
parent2002-08-01 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-3aa4c2e0cec61dc0673d3b0ef40a124f64d917e0.tar.bz2
2002-08-01 Joel Sherrill <joel@OARcorp.com>
* Per PR47 add support for buffered test output. This involved adding defines to redirect output to a buffer and dump it when full, at "test pause", and at exit. To avoid problems when redefining exit(), all tests were modified to call rtems_test_exit(). Some tests, notable psxtests, had to be modified to include the standard test macro .h file (pmacros.h or tmacros.h) to enable this support. * sp01/task1.c, sp02/task1.c, sp03/task2.c, sp04/task1.c, sp05/task1.c, sp06/task1.c, sp07/taskexit.c, sp08/task1.c, sp09/task1.c, sp11/task1.c, sp12/pritask.c, sp12/task5.c, sp13/task1.c, sp14/task2.c, sp15/task1.c, sp16/task1.c, sp17/task1.c, sp19/fptask.c, sp20/task1.c, sp21/task1.c, sp22/task1.c, sp23/task1.c, sp24/task1.c, sp25/task1.c, sp26/init.c, sp26/task1.c, sp30/task1.c, sp31/task1.c, spsize/init.c, spsize/size.c: Modified.
Diffstat (limited to 'testsuites/sptests/sp26')
-rw-r--r--testsuites/sptests/sp26/init.c2
-rw-r--r--testsuites/sptests/sp26/task1.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/testsuites/sptests/sp26/init.c b/testsuites/sptests/sp26/init.c
index 7682ad0011..0ccec87487 100644
--- a/testsuites/sptests/sp26/init.c
+++ b/testsuites/sptests/sp26/init.c
@@ -34,5 +34,5 @@ rtems_task Init(
task1();
/* does not return */
puts( "Init - task1 should not have returned" );
- exit( 0 );
+ rtems_test_exit( 0 );
}
diff --git a/testsuites/sptests/sp26/task1.c b/testsuites/sptests/sp26/task1.c
index f29adb2701..39541136e6 100644
--- a/testsuites/sptests/sp26/task1.c
+++ b/testsuites/sptests/sp26/task1.c
@@ -17,6 +17,8 @@ static rtems_id taskId1;
static rtems_id taskId2;
rtems_interval ticksPerSecond;
+#include "system.h"
+
static int
isSuspended (rtems_id tid)
{
@@ -74,7 +76,7 @@ subTask2 (rtems_task_argument arg)
isSuspended (taskId1));
puts( "*** END OF TEST 26 ***" );
- exit( 0 );
+ rtems_test_exit( 0 );
}
static void