source: rtems/testsuites/libtests/mathf/init.c

Last change on this file was 1ef07d46, checked in by Joel Sherrill <joel@…>, on 04/01/22 at 19:23:37

testsuites/libtests/[d-o]*: Change license to BSD-2

Updates #3053.

  • Property mode set to 100644
File size: 2.7 KB
Line 
1/* SPDX-License-Identifier: BSD-2-Clause */
2
3/*  Init
4 *
5 *  This routine is the initialization task for this test program.
6 *  It is called from init_exec and has the responsibility for creating
7 *  and starting the tasks that make up the test.  If the time of day
8 *  clock is required for the test, it should also be set to a known
9 *  value by this function.
10 *
11 *  Input parameters:  NONE
12 *
13 *  Output parameters:  NONE
14 *
15 *  COPYRIGHT (c) 1989-1999.
16 *  On-Line Applications Research Corporation (OAR).
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions
20 * are met:
21 * 1. Redistributions of source code must retain the above copyright
22 *    notice, this list of conditions and the following disclaimer.
23 * 2. Redistributions in binary form must reproduce the above copyright
24 *    notice, this list of conditions and the following disclaimer in the
25 *    documentation and/or other materials provided with the distribution.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
28 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
31 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 * POSSIBILITY OF SUCH DAMAGE.
38 */
39
40#ifdef HAVE_CONFIG_H
41#include "config.h"
42#endif
43
44#include <stdio.h>
45#include <stdlib.h>
46
47extern void domathf(void);
48
49#if __rtems__
50#include <tmacros.h>
51
52const char rtems_test_name[] = "MATHF";
53
54/* NOTICE: the clock driver is explicitly disabled */
55#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
56#define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER
57
58#define CONFIGURE_MAXIMUM_TASKS           1
59#define CONFIGURE_INIT_TASK_ATTRIBUTES    RTEMS_FLOATING_POINT
60
61#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
62
63#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
64
65#define CONFIGURE_INIT_TASK_ATTRIBUTES RTEMS_FLOATING_POINT
66
67#define CONFIGURE_INIT
68#include <rtems/confdefs.h>
69
70rtems_task Init(
71  rtems_task_argument ignored
72)
73#else
74int main( void )
75#endif
76{
77#if __rtems__
78  rtems_print_printer_fprintf_putc(&rtems_test_printer);
79  TEST_BEGIN();
80#endif
81
82  domathf();
83
84#if __rtems__
85  TEST_END();
86#endif
87  exit( 0 );
88}
Note: See TracBrowser for help on using the repository browser.