source: rtems/testsuites/sptests/sp09/init.c @ 67e024b

4.104.114.95
Last change on this file since 67e024b was 67e024b, checked in by Glenn Humphrey <glenn.humphrey@…>, on 10/10/07 at 21:01:45

2007-10-10 Glenn Humphrey <glenn.humphrey@…>

  • sp09/init.c, sp09/sp09.scn: Removed an obsolete test that was commented out and updated the .scn file.
  • Property mode set to 100644
File size: 3.1 KB
Line 
1/*  Init
2 *
3 *  This routine is the initialization task for this test program.
4 *  It is a user initialization task 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:
10 *    argument - task argument
11 *
12 *  Output parameters:  NONE
13 *
14 *  COPYRIGHT (c) 1989-1999.
15 *  On-Line Applications Research Corporation (OAR).
16 *
17 *  The license and distribution terms for this file may be
18 *  found in the file LICENSE in this distribution or at
19 *  http://www.rtems.com/license/LICENSE.
20 *
21 *  $Id$
22 */
23
24#define TEST_INIT
25#include "system.h"
26
27rtems_task Init(
28  rtems_task_argument argument
29)
30{
31  rtems_status_code status;
32
33  puts( "\n\n*** TEST 9 ***" );
34
35  Task_name[ 1 ]       =  rtems_build_name( 'T', 'A', '1', ' ' );
36  Task_name[ 2 ]       =  rtems_build_name( 'T', 'A', '2', ' ' );
37  Task_name[ 3 ]       =  rtems_build_name( 'T', 'A', '3', ' ' );
38  Task_name[ 4 ]       =  rtems_build_name( 'T', 'A', '4', ' ' );
39  Task_name[ 5 ]       =  rtems_build_name( 'T', 'A', '5', ' ' );
40  Task_name[ 6 ]       =  rtems_build_name( 'T', 'A', '6', ' ' );
41  Task_name[ 7 ]       =  rtems_build_name( 'T', 'A', '7', ' ' );
42  Task_name[ 8 ]       =  rtems_build_name( 'T', 'A', '8', ' ' );
43  Task_name[ 9 ]       =  rtems_build_name( 'T', 'A', '9', ' ' );
44  Task_name[ 10 ]      =  rtems_build_name( 'T', 'A', 'A', ' ' );
45
46  Timer_name[ 1 ]      =  rtems_build_name( 'T', 'M', '1', ' ' );
47
48  Semaphore_name[ 1 ]  =  rtems_build_name( 'S', 'M', '1', ' ' );
49  Semaphore_name[ 2 ]  =  rtems_build_name( 'S', 'M', '2', ' ' );
50  Semaphore_name[ 3 ]  =  rtems_build_name( 'S', 'M', '3', ' ' );
51
52  Queue_name[ 1 ]      =  rtems_build_name( 'M', 'Q', '1', ' ' );
53  Queue_name[ 2 ]      =  rtems_build_name( 'M', 'Q', '2', ' ' );
54
55  Partition_name[ 1 ]  =  rtems_build_name( 'P', 'T', '1', ' ' );
56
57  Region_name[ 1 ]     =  rtems_build_name( 'R', 'N', '1', ' ' );
58
59  Port_name[ 1 ]       =  rtems_build_name( 'D', 'P', '1', ' ' );
60
61  Period_name[ 1 ]     =  rtems_build_name( 'T', 'M', '1', ' ' );
62
63  status = rtems_task_create(
64     Task_name[1],
65     0,
66     RTEMS_MINIMUM_STACK_SIZE,
67     RTEMS_DEFAULT_MODES,
68     RTEMS_DEFAULT_ATTRIBUTES,
69     &Task_id[ 1 ]
70  );
71  fatal_directive_status(
72    status,
73    RTEMS_INVALID_PRIORITY,
74    "rtems_task_create with illegal priority"
75  );
76  puts( "INIT - rtems_task_create - RTEMS_INVALID_PRIORITY" );
77
78  status = rtems_task_create(
79    Task_name[ 1 ],
80    4,
81    RTEMS_MINIMUM_STACK_SIZE * 3,
82    RTEMS_DEFAULT_MODES,
83    RTEMS_DEFAULT_ATTRIBUTES,
84    &Task_id[ 1 ]
85  );
86  directive_failed( status, "rtems_task_create of TA1" );
87
88  status = rtems_task_restart( Task_id[ 1 ], 0 );
89  fatal_directive_status(
90    status,
91    RTEMS_INCORRECT_STATE,
92    "rtems_task_restart of DORMANT task"
93  );
94  puts( "INIT - rtems_task_restart - RTEMS_INCORRECT_STATE" );
95
96  status = rtems_task_start( Task_id[ 1 ], Task_1, 0 );
97  directive_failed( status, "rtems_task_start of TA1" );
98
99  status = rtems_task_delete( RTEMS_SELF );
100  directive_failed( status, "rtems_task_delete of RTEMS_SELF" );
101}
Note: See TracBrowser for help on using the repository browser.