source: rtems/c/src/tests/psxtests/psxreaddir/main.c @ 0895bdb

4.104.114.84.95
Last change on this file since 0895bdb was 0895bdb, checked in by Joel Sherrill <joel.sherrill@…>, on 11/23/98 at 18:57:48

Added tests in support of the file system infrastructure.

  • Property mode set to 100644
File size: 405 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_TEST_NEEDS_CONSOLE_DRIVER
22
23#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
24
25#define CONFIGURE_INIT
26
27#include <confdefs.h>
28
29/* end of file */
Note: See TracBrowser for help on using the repository browser.