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.
	* tmitronsem01/init.c: Modified.
This commit is contained in:
Joel Sherrill
2002-08-02 00:53:54 +00:00
parent 6b9d16fc27
commit 0428ddf33e
4 changed files with 24 additions and 2 deletions

View File

@@ -1,3 +1,14 @@
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.
* tmitronsem01/init.c: Modified.
2002-04-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2002-04-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Remove ENABLE_GCC28. * configure.ac: Remove ENABLE_GCC28.

View File

@@ -140,5 +140,5 @@ void ITRON_Init( void )
printf( "*** END OF TMITRON01 -- ITRON TIMING TEST ***\n" ); printf( "*** END OF TMITRON01 -- ITRON TIMING TEST ***\n" );
exit( 0 ); rtems_test_exit( 0 );
} }

View File

@@ -1,3 +1,14 @@
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.
* tmitronsem01/init.c: Modified.
2002-04-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2002-04-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Remove ENABLE_GCC28. * configure.ac: Remove ENABLE_GCC28.

View File

@@ -140,5 +140,5 @@ void ITRON_Init( void )
printf( "*** END OF TMITRON01 -- ITRON TIMING TEST ***\n" ); printf( "*** END OF TMITRON01 -- ITRON TIMING TEST ***\n" );
exit( 0 ); rtems_test_exit( 0 );
} }