summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxfatal_support/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psxfatal_support/init.c')
-rw-r--r--testsuites/psxtests/psxfatal_support/init.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/testsuites/psxtests/psxfatal_support/init.c b/testsuites/psxtests/psxfatal_support/init.c
index 350b3a2b19..0f995dc7f7 100644
--- a/testsuites/psxtests/psxfatal_support/init.c
+++ b/testsuites/psxtests/psxfatal_support/init.c
@@ -11,6 +11,9 @@
#include "config.h"
#endif
+#define TESTS_USE_PRINTK
+#include "tmacros.h"
+
#define CONFIGURE_INIT
#include "system.h"
@@ -22,7 +25,7 @@ static void print_test_begin_message(void)
if (!done) {
done = true;
- rtems_test_begink();
+ TEST_BEGIN();
}
}
@@ -95,7 +98,6 @@ void Fatal_extension(
&& is_internal == FATAL_ERROR_EXPECTED_IS_INTERNAL
&& error == FATAL_ERROR_EXPECTED_ERROR
) {
- rtems_test_endk();
+ TEST_END();
}
}
-