source: rtems/testsuites/psxtests/psxmount/main.c @ 80450c7

4.104.114.84.95
Last change on this file since 80450c7 was 80450c7, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/01/04 at 15:16:20
  • psx01/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psx02/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psx03/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psx04/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psx05/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psx06/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psx07/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psx08/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psx09/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psx10/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psx11/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psx12/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psx13/main.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psxcancel/init.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psxchroot01/main.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psxfile01/main.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psxmount/main.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psxmsgq01/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psxreaddir/main.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psxsem01/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psxstat/main.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psxtime/main.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • psxtimer/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
  • Property mode set to 100644
File size: 681 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#include <pmacros.h>
11
12void test_main( void );
13
14rtems_task Init(
15  rtems_task_argument ignored
16)
17{
18  test_main();
19  rtems_test_exit( 0 );
20}
21
22/* configuration information */
23
24#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
25
26#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
27#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 10
28
29#define CONFIGURE_MAXIMUM_TASKS 1
30
31#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
32
33#define CONFIGURE_INIT
34
35#include <rtems/confdefs.h>
36
37/* end of file */
Note: See TracBrowser for help on using the repository browser.