source: rtems/testsuites/psxtests/psx13/main.c @ 8fbdf07

4.104.114.84.95
Last change on this file since 8fbdf07 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

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