source: rtems/testsuites/samples/paranoia/init.c @ 07e7a7f8

4.115
Last change on this file since 07e7a7f8 was 3324383c, checked in by Joel Sherrill <joel.sherrill@…>, on 05/05/14 at 14:47:30

testsuites: Remove BSP_SMALL_MEMORY

  • Property mode set to 100644
File size: 819 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_test_begin();
39  paranoia(1, args);
40  rtems_test_end();
41  exit( 0 );
42}
Note: See TracBrowser for help on using the repository browser.