source: rtems/testsuites/sptests/sp40/init.c @ 403c507

4.104.114.95
Last change on this file since 403c507 was 403c507, checked in by Joel Sherrill <joel.sherrill@…>, on 01/31/08 at 16:08:52

2008-01-31 Joel Sherrill <joel.sherrill@…>

  • sp09/screen01.c, sp09/sp09.scn: Add more bad thread Id cases.
  • sp40/init.c, sp40/sp40.scn: Add message to say test is TBD.
  • sp41/sp41.scn: Now has content.
  • sp43/init.c, sp43/sp43.scn: Enhanced to increase coverage of Object Services recently added to API.
  • Property mode set to 100644
File size: 762 bytes
Line 
1/*
2 *  IO Manager Dynamic Registration
3 *
4 *  COPYRIGHT (c) 1989-2007.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  $Id$
12 */
13
14#define TEST_INIT
15#include "system.h"
16
17rtems_task Init(
18  rtems_task_argument argument
19)
20{
21  puts( "\n\n*** TEST 40 ***" );
22
23  puts( "TBD - Write test case matching this description" );
24
25  /*
26   *  Register two drivers to fill up the table
27   */
28
29  /* add major = 4 */
30
31  /* add major = 3 */
32
33  /*
34   *  Unregister major = 3 to leave slot which is not at
35   *  the end of the Driver Table.
36   */
37
38  puts( "*** END OF TEST 40 ***" );
39  rtems_test_exit( 0 );
40}
Note: See TracBrowser for help on using the repository browser.