source: rtems/testsuites/psxtests/psxchroot01/main.c @ 66c348cb

4.104.114.95
Last change on this file since 66c348cb was 66c348cb, checked in by Joel Sherrill <joel.sherrill@…>, on 02/01/08 at 00:45:08

2008-01-31 Joel Sherrill <joel.sherrill@…>

  • include/pmacros.h, psx01/init.c, psx01/system.h, psx13/main.c, psxbarrier01/main.c, psxchroot01/main.c, psxfatal_support/init.c, psxfile01/main.c, psxfile01/test.c, psxmount/main.c, psxrdwrv/main.c, psxreaddir/main.c, psxrwlock01/main.c, psxspin01/main.c, psxstat/main.c, psxtime/main.c: Change TEST_INIT to CONFIGURE_INIT. Make tmacros.h available to all POSIX tests. Add a clock_settime case for < 1988.
  • Property mode set to 100644
File size: 589 bytes
Line 
1/*
2 *  Simple test program -- simplified version of sample test hello.
3 */
4
5#define CONFIGURE_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 <rtems/confdefs.h>
34
35/* end of file */
Note: See TracBrowser for help on using the repository browser.