summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp40/init.c
blob: bb6f705d5d4ecedab92fb11157965c438604d79e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
 *  IO Manager Dynamic Registration
 *
 *  COPYRIGHT (c) 1989-2007.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.com/license/LICENSE.
 *
 *  $Id$
 */

#define TEST_INIT
#include "system.h"

rtems_task Init(
  rtems_task_argument argument
)
{
  puts( "\n\n*** TEST 40 ***" );

  puts( "TBD - Write test case matching this description" );

  /*
   *  Register two drivers to fill up the table
   */

  /* add major = 4 */

  /* add major = 3 */

  /*
   *  Unregister major = 3 to leave slot which is not at
   *  the end of the Driver Table.
   */

  puts( "*** END OF TEST 40 ***" );
  rtems_test_exit( 0 );
}