source: rtems/testsuites/libtests/devfs01/init.c @ c499856

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2 *  COPYRIGHT (c) 1989-2012.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.org/license/LICENSE.
8 */
9
10#ifdef HAVE_CONFIG_H
11#include "config.h"
12#endif
13
14#include <tmacros.h>
15#include "test_support.h"
16#include <rtems/devfs.h>
17#include <errno.h>
18
19const char rtems_test_name[] = "DEVFS 1";
20
21/* forward declarations to avoid warnings */
22rtems_task Init(rtems_task_argument argument);
23
24rtems_task Init(
25  rtems_task_argument argument
26)
27{
28  TEST_BEGIN();
29
30  puts( "devFS_Show" );
31  devFS_Show();
32 
33  TEST_END();
34
35  rtems_test_exit(0);
36}
37
38/* configuration information */
39
40#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
41#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
42
43#define CONFIGURE_MAXIMUM_TASKS             1
44#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
45
46#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
47
48#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM
49
50#define CONFIGURE_INIT
51
52#include <rtems/confdefs.h>
53/* end of file */
Note: See TracBrowser for help on using the repository browser.