summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/block08/init.c
blob: be7495d8ffd598d55826f11f0a68782abc1f8ba7 (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
/*  Init
 *
 *  This routine is the initialization task for this test program.
 *
 *  Input parameters:
 *    argument - task argument
 *
 *  Output parameters:  NONE
 *
 * Copyright (C) 2010 OKTET Labs, St.-Petersburg, Russia
 * Author: Oleg Kravtsov <Oleg.Kravtsov@oktetlabs.ru>
 *
 * 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.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#define CONFIGURE_INIT
#include "system.h"

#include "bdbuf_tests.h"

rtems_task Init(rtems_task_argument argument)
{
  puts( "\n\n*** TEST BLOCK 8 ***" );
  run_bdbuf_tests();
  puts( "*** END OF TEST BLOCK 8 ***" );

  exit(0);
}