mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-01 17:21:06 +08:00
* 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.
64 lines
1.5 KiB
C
64 lines
1.5 KiB
C
/* Init
|
|
*
|
|
* This routine is the initialization task for this test program.
|
|
* It is a user initialization task and has the responsibility for creating
|
|
* and starting the tasks that make up the test. If the time of day
|
|
* clock is required for the test, it should also be set to a known
|
|
* value by this function.
|
|
*
|
|
* Input parameters:
|
|
* argument - task argument
|
|
*
|
|
* Output parameters: NONE
|
|
*
|
|
* COPYRIGHT (c) 1989-1999.
|
|
* 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.OARcorp.com/rtems/license.html.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#define TEST_INIT
|
|
#include "system.h"
|
|
|
|
/* #define HAVE_MENU */
|
|
|
|
rtems_task Test_task();
|
|
void size_rtems( int mode );
|
|
|
|
rtems_task Init(
|
|
rtems_task_argument argument
|
|
)
|
|
{
|
|
#if defined(HAVE_MENU)
|
|
int choice = 0;
|
|
#endif
|
|
|
|
setvbuf(stdout, 0, _IONBF, 0);
|
|
|
|
puts( "\n*** RTEMS SIZE PROGRAM ***" );
|
|
size_rtems( 1 );
|
|
puts( "*** END OF RTEMS SIZE PROGRAM ***" );
|
|
rtems_test_exit( 0 );
|
|
#if defined(HAVE_MENU)
|
|
do {
|
|
printf( "\n\nPlease select program mode:\n" );
|
|
printf( " 1) Print Formulas\n" );
|
|
printf( " 2) Determine Workspace Size\n" );
|
|
printf( " 3) Exit\n" );
|
|
printf( "Enter number of choice (1,2,3) : " );
|
|
|
|
choice = getint();
|
|
switch( choice ) {
|
|
case 1: size_rtems( 1 ); break;
|
|
case 2: size_rtems( 0 ); break;
|
|
case 3: rtems_test_exit( 0 );
|
|
default: continue;
|
|
}
|
|
} while ( FOREVER );
|
|
#endif
|
|
}
|