source: rtems/testsuites/psxtests/psxstat/main.c @ 0895bdb

4.104.114.84.95
Last change on this file since 0895bdb was 0895bdb, checked in by Joel Sherrill <joel.sherrill@…>, on 11/23/98 at 18:57:48

Added tests in support of the file system infrastructure.

  • Property mode set to 100644
File size: 760 bytes
Line 
1/*
2 *  Simple test program -- simplified version of sample test hello.
3 *
4 *  COPYRIGHT (c) 1989-1998.
5 *  On-Line Applications Research Corporation (OAR).
6 *  Copyright assigned to U.S. Government, 1994.
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.OARcorp.com/rtems/license.html.
11 *
12 *  $Id$
13 */
14
15#define TEST_INIT
16
17#include <bsp.h>
18
19void test_main( void );
20
21rtems_task Init(
22  rtems_task_argument ignored
23)
24{
25  test_main();
26  exit( 0 );
27}
28
29/* configuration information */
30
31#define CONFIGURE_TEST_NEEDS_CONSOLE_DRIVER
32#define CONFIGURE_TEST_NEEDS_CLOCK_DRIVER
33
34#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
35
36#define CONFIGURE_INIT
37
38#include <confdefs.h>
39
40/* end of file */
Note: See TracBrowser for help on using the repository browser.