source: rtems/testsuites/psxtests/psxmount/main.c @ 698c2e50

4.115
Last change on this file since 698c2e50 was 698c2e50, checked in by Sebastian Huber <sebastian.huber@…>, on 03/25/14 at 07:06:16

tests/psxtests: Use <rtems/test.h>

  • Property mode set to 100644
File size: 1001 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 CONFIGURE_INIT
8
9#ifdef HAVE_CONFIG_H
10#include "config.h"
11#endif
12
13#include <bsp.h>
14#include <pmacros.h>
15
16/* forward declarations to avoid warnings */
17rtems_task Init(rtems_task_argument ignored);
18void test_main(void);
19
20rtems_task Init(
21  rtems_task_argument ignored
22)
23{
24  test_main();
25  rtems_test_exit( 0 );
26}
27
28/* configuration information */
29
30/* NOTICE: the clock driver is explicitly disabled */
31#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
32#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
33
34#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
35#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 10
36
37#define CONFIGURE_MAXIMUM_TASKS 1
38
39#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
40
41#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
42
43#define CONFIGURE_INIT
44
45#include <rtems/confdefs.h>
46
47/* end of file */
Note: See TracBrowser for help on using the repository browser.