source: rtems/c/src/tests/psxtests/psxchroot01/main.c @ 6287b57

4.104.114.84.95
Last change on this file since 6287b57 was 6287b57, checked in by Joel Sherrill <joel.sherrill@…>, on 05/25/01 at 13:29:38

2001-05-25 Joel Sherrill <joel@…>

  • Added once version of psxchroot01 test for user review.
  • psxchroot01: New directory.
  • psxchroot01/Makefile.am, psxchroot01/main.c, psxchroot01/test.c, psxchroot01/psxchroot01.scn, psxchroot01/.cvsignore: New files.
  • configure.in, Makefile.am: Modified to reflect above.
  • Property mode set to 100644
File size: 546 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
9void test_main( void );
10
11rtems_task Init(
12  rtems_task_argument ignored
13)
14{
15  test_main();
16  exit( 0 );
17}
18
19/* configuration information */
20
21#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
22
23#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
24#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 10
25
26#define CONFIGURE_MAXIMUM_TASKS 1
27
28#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
29
30#define CONFIGURE_INIT
31
32#include <confdefs.h>
33
34/* end of file */
Note: See TracBrowser for help on using the repository browser.