source: rtems/testsuites/psxtests/psxreaddir/main.c @ c4b8b147

5
Last change on this file since c4b8b147 was c4b8b147, checked in by Sebastian Huber <sebastian.huber@…>, on 11/03/17 at 07:35:38

tests: Use simple console driver

Update #3170.
Update #3199.

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