source: rtems/testsuites/psxtests/psxtime/main.c @ ac28f15

5
Last change on this file since ac28f15 was af43554, checked in by Sebastian Huber <sebastian.huber@…>, on 10/26/17 at 11:59:11

tests: Remove TEST_INIT

The TEST_EXTERN is a used only by the system.h style tests and they use
CONFIGURE_INIT appropriately.

Update #3170.
Update #3199.

  • Property mode set to 100644
File size: 943 bytes
Line 
1/*
2 *  Simple RTEMS startup to call main
3 *
4 *  COPYRIGHT (c) 1989-2009.
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.rtems.org/license/LICENSE.
10 */
11
12#ifdef HAVE_CONFIG_H
13#include "config.h"
14#endif
15
16
17#include <bsp.h>
18#include <tmacros.h>  /* instantiate buffering code if needed */
19
20void test_main( void );
21rtems_task Init(
22  rtems_task_argument ignored
23);
24
25rtems_task Init(
26  rtems_task_argument ignored
27)
28{
29  test_main();
30  rtems_test_exit( 0 );
31}
32
33/* configuration information */
34
35#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
36#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
37
38#define CONFIGURE_MAXIMUM_TASKS 1
39
40#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
41
42#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
43
44#define CONFIGURE_INIT
45
46#include <rtems/confdefs.h>
47
48/* end of file */
Note: See TracBrowser for help on using the repository browser.