summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/syscall01
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-17 08:10:40 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-03-20 09:10:26 +0100
commitf8b2eb03f72d9d1a2c2fe9bc8775c53e4b594133 (patch)
tree851dc4a6921d6cc7936aefa6343c516fff452dd8 /testsuites/libtests/syscall01
parenttests/fstests: Remove duplicate begin/end messages (diff)
downloadrtems-f8b2eb03f72d9d1a2c2fe9bc8775c53e4b594133.tar.bz2
tests/libtests: Use <rtems/test.h>
Diffstat (limited to 'testsuites/libtests/syscall01')
-rw-r--r--testsuites/libtests/syscall01/init.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/testsuites/libtests/syscall01/init.c b/testsuites/libtests/syscall01/init.c
index 1e0d27eaa5..990d5e134c 100644
--- a/testsuites/libtests/syscall01/init.c
+++ b/testsuites/libtests/syscall01/init.c
@@ -27,6 +27,8 @@
#include <rtems/libio.h>
#include <rtems/rtems_bsdnet.h>
+const char rtems_test_name[] = "SYSCALL 1";
+
/* forward declarations to avoid warnings */
static rtems_task Init(rtems_task_argument argument);
@@ -78,14 +80,14 @@ static void Init(rtems_task_argument arg)
{
int rv;
- puts("\n\n*** TEST SYSCALL 1 ***");
+ TEST_BEGIN();
rv = rtems_bsdnet_initialize_network();
rtems_test_assert(rv == 0);
test();
- puts("*** END OF TEST SYSCALL 1 ***");
+ TEST_END();
rtems_test_exit(0);
}
@@ -131,6 +133,8 @@ static rtems_device_driver open_driver_open(
#define CONFIGURE_MAXIMUM_TASKS 2
+#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
+
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_INIT