source: rtems/testsuites/psxtests/psxchroot01/main.c @ 6da99727

4.104.114.84.95
Last change on this file since 6da99727 was d802489, checked in by Joel Sherrill <joel.sherrill@…>, on 08/02/02 at 00:53:21

2002-08-01 Joel Sherrill <joel@…>

  • 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.
  • include/pmacros.h, psx01/task.c, psx02/init.c, psx02/task.c, psx03/init.c, psx04/init.c, psx05/init.c, psx06/init.c, psx07/init.c, psx08/task3.c, psx09/init.c, psx10/init.c, psx11/init.c, psx12/init.c, psx13/Makefile.am, psx13/main.c, psx13/test.c, psxcancel/init.c, psxchroot01/Makefile.am, psxchroot01/main.c, psxchroot01/test.c, psxfile01/Makefile.am, psxfile01/main.c, psxfile01/test.c, psxfile01/test_cat.c, psxfile01/test_extend.c, psxfile01/test_write.c, psxmount/Makefile.am, psxmount/main.c, psxmount/test.c, psxmsgq01/init.c, psxreaddir/Makefile.am, psxreaddir/main.c, psxreaddir/test.c, psxsem01/init.c, psxstat/Makefile.am, psxstat/main.c, psxstat/test.c, psxtime/main.c, psxtime/test.c, psxtimer/psxtimer.c: Modified.
  • Property mode set to 100644
File size: 578 bytes
Line 
1/*
2 *  Simple test program -- simplified version of sample test hello.
3 */
4
5#define TEST_INIT
6
7#include <bsp.h>
8#include <pmacros.h>
9
10void test_main( void );
11
12rtems_task Init(
13  rtems_task_argument ignored
14)
15{
16  test_main();
17  rtems_test_exit( 0 );
18}
19
20/* configuration information */
21
22#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
23
24#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
25#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 10
26
27#define CONFIGURE_MAXIMUM_TASKS 1
28
29#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
30
31#define CONFIGURE_INIT
32
33#include <confdefs.h>
34
35/* end of file */
Note: See TracBrowser for help on using the repository browser.