source: rtems/testsuites/samples/paranoia/init.c @ 9db3cc21

5
Last change on this file since 9db3cc21 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: 876 bytes
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#ifdef HAVE_CONFIG_H
11#include "config.h"
12#endif
13
14#define CONFIGURE_INIT
15#include "system.h"
16#include <stdio.h>
17#include <stdlib.h> /* exit */
18
19extern int paranoia(int, char **);
20
21const char rtems_test_name[] = "PARANOIA";
22
23char *args[2] = { "paranoia", 0 };
24
25rtems_task Init(
26  rtems_task_argument ignored
27)
28{
29  /*
30   *  Install whatever optional floating point assistance package
31   *  is required by this CPU.
32   */
33
34#if (defined (m68040))
35  M68KFPSPInstallExceptionHandlers ();
36#endif
37
38  rtems_print_printer_fprintf_putc(&rtems_test_printer);
39  rtems_test_begin();
40  paranoia(1, args);
41  rtems_test_end();
42  exit( 0 );
43}
Note: See TracBrowser for help on using the repository browser.