source: rtems/c/src/tests/psxtests/psxmount/main.c @ af9b39e

Last change on this file since af9b39e was af9b39e, checked in by Joel Sherrill <joel.sherrill@…>, on 05/04/00 at 20:49:22

Renamed the CONFIGURE_TEST_NEEDS configuration constants to
CONFIGURE_APPLICATION_NEEDS.

  • Property mode set to 100644
File size: 509 bytes
Line 
1/*
2 *  Simple test program -- check out of the basic file system mounting
3 *  capabilities
4 *  Attempt to mount the IMFS file system on a mount point in the base IMFS
5 */
6
7#define TEST_INIT
8
9#include <bsp.h>
10
11void test_main( void );
12
13rtems_task Init(
14  rtems_task_argument ignored
15)
16{
17  test_main();
18  exit( 0 );
19}
20
21/* configuration information */
22
23#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
24
25#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
26
27#define CONFIGURE_INIT
28
29#include <confdefs.h>
30
31/* end of file */
Note: See TracBrowser for help on using the repository browser.