source: rtems/testsuites/psxtests/psxmount/main.c @ df49c60

4.104.114.84.95
Last change on this file since df49c60 was df49c60, checked in by Joel Sherrill <joel.sherrill@…>, on 06/12/00 at 15:00:15

Merged from 4.5.0-beta3a

  • Property mode set to 100644
File size: 643 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_USE_IMFS_AS_BASE_FILESYSTEM
26#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 10
27
28#define CONFIGURE_MAXIMUM_TASKS 1
29
30#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
31
32#define CONFIGURE_INIT
33
34#include <confdefs.h>
35
36/* end of file */
Note: See TracBrowser for help on using the repository browser.