summaryrefslogtreecommitdiffstats
path: root/c/src/tests/sptests/spsize
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 /c/src/tests/sptests/spsize
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 'c/src/tests/sptests/spsize')
-rw-r--r--c/src/tests/sptests/spsize/init.c4
-rw-r--r--c/src/tests/sptests/spsize/size.c8
2 files changed, 4 insertions, 8 deletions
diff --git a/c/src/tests/sptests/spsize/init.c b/c/src/tests/sptests/spsize/init.c
index 9a8c66d2df..cfe6057bc1 100644
--- a/c/src/tests/sptests/spsize/init.c
+++ b/c/src/tests/sptests/spsize/init.c
@@ -42,7 +42,7 @@ rtems_task Init(
puts( "\n*** RTEMS SIZE PROGRAM ***" );
size_rtems( 1 );
puts( "*** END OF RTEMS SIZE PROGRAM ***" );
- exit( 0 );
+ rtems_test_exit( 0 );
#if defined(HAVE_MENU)
do {
printf( "\n\nPlease select program mode:\n" );
@@ -55,7 +55,7 @@ rtems_task Init(
switch( choice ) {
case 1: size_rtems( 1 ); break;
case 2: size_rtems( 0 ); break;
- case 3: exit( 0 );
+ case 3: rtems_test_exit( 0 );
default: continue;
}
} while ( FOREVER );
diff --git a/c/src/tests/sptests/spsize/size.c b/c/src/tests/sptests/spsize/size.c
index 2390cc6de8..5ffe538107 100644
--- a/c/src/tests/sptests/spsize/size.c
+++ b/c/src/tests/sptests/spsize/size.c
@@ -46,6 +46,8 @@
#include <rtems/score/wkspace.h>
#include <stdlib.h>
+#include <stdio.h>
+#include <tmacros.h>
/* These are always defined by the executive.
*
@@ -126,12 +128,6 @@
rtems_unsigned32 sys_req;
-/* to avoid warnings */
-int puts();
-int printf();
-int getint();
-#undef getchar
-int getchar();
void help_size();
void print_formula();