source: rtems/testsuites/samples/iostream/init.cc @ 8ae6f26

4.115
Last change on this file since 8ae6f26 was 8ae6f26, checked in by Sebastian Huber <sebastian.huber@…>, on 09/01/14 at 15:16:53

samples/iostream: Produce proper begin/end message

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/*  Init
2 *
3 *  This routine is the initialization task for this test program.
4 *  It is called from init_exec and has the responsibility for creating
5 *  and starting the tasks that make up the test.  If the time of day
6 *  clock is required for the test, it should also be set to a known
7 *  value by this function.
8 *
9 *  Input parameters:  NONE
10 *
11 *  Output parameters:  NONE
12 *
13 *  COPYRIGHT (c) 1989-2008.
14 *  On-Line Applications Research Corporation (OAR).
15 *
16 *  The license and distribution terms for this file may be
17 *  found in the file LICENSE in this distribution or at
18 *  http://www.rtems.org/license/LICENSE.
19 */
20
21#define CONFIGURE_INIT
22#include "system.h"
23
24#include <iostream>
25
26#include <stdlib.h>
27
28const char rtems_test_name[] = "IOSTREAM";
29
30rtems_task Init(
31  rtems_task_argument ignored
32)
33{
34  std::cout << std::endl << std::endl
35    << "*** BEGIN OF TEST " << rtems_test_name << " ***" << std::endl;
36  std::cout << "Hello World" << std::endl;
37  std::cout << "*** END OF TEST " << rtems_test_name << " ***" << std::endl;
38  exit( 0 );
39}
40
Note: See TracBrowser for help on using the repository browser.