summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/devfs01/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/libtests/devfs01/init.c')
-rw-r--r--testsuites/libtests/devfs01/init.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/testsuites/libtests/devfs01/init.c b/testsuites/libtests/devfs01/init.c
index 91f712f314..4eef7e2d91 100644
--- a/testsuites/libtests/devfs01/init.c
+++ b/testsuites/libtests/devfs01/init.c
@@ -16,6 +16,8 @@
#include <rtems/devfs.h>
#include <errno.h>
+const char rtems_test_name[] = "DEVFS 1";
+
/* forward declarations to avoid warnings */
rtems_task Init(rtems_task_argument argument);
@@ -23,12 +25,12 @@ rtems_task Init(
rtems_task_argument argument
)
{
- puts( "\n\n*** TEST DEVFS01 ***" );
+ TEST_BEGIN();
puts( "devFS_Show" );
devFS_Show();
- puts( "*** END OF TEST DEVFS01 ***" );
+ TEST_END();
rtems_test_exit(0);
}
@@ -39,6 +41,8 @@ rtems_task Init(
#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
#define CONFIGURE_MAXIMUM_TASKS 1
+#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
+
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM