source: rtems/testsuites/psxtests/psxfile01/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: 1.0 KB
Line 
1/*
2 *  COPYRIGHT (c) 1989-2012.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.org/license/LICENSE.
8 */
9
10
11#ifdef HAVE_CONFIG_H
12#include "config.h"
13#endif
14
15#include <bsp.h>
16#include <pmacros.h>
17
18/* forward declarations to avoid warnings */
19rtems_task Init(rtems_task_argument ignored);
20void test_main(void);
21
22rtems_task Init(
23  rtems_task_argument ignored
24)
25{
26  test_main();
27  rtems_test_exit( 0 );
28}
29
30/* configuration information */
31
32#define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER
33#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
34
35#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 6
36
37#define CONFIGURE_FILESYSTEM_IMFS
38
39#define CONFIGURE_MAXIMUM_TASKS 1
40#define CONFIGURE_INIT_TASK_STACK_SIZE (2 * RTEMS_MINIMUM_STACK_SIZE)
41
42#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
43
44#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
45
46#define CONFIGURE_INIT
47
48#include <rtems/confdefs.h>
49
50/* end of file */
Note: See TracBrowser for help on using the repository browser.