summaryrefslogtreecommitdiff
path: root/cpukit/libtest/testbeginend.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libtest/testbeginend.c')
-rw-r--r--cpukit/libtest/testbeginend.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/cpukit/libtest/testbeginend.c b/cpukit/libtest/testbeginend.c
index eca8712b35..d520a45e62 100644
--- a/cpukit/libtest/testbeginend.c
+++ b/cpukit/libtest/testbeginend.c
@@ -42,13 +42,8 @@
#include <rtems/test-info.h>
#include <rtems/test-printer.h>
-#include <rtems/bspIo.h>
#include <rtems/version.h>
-rtems_printer rtems_test_printer = {
- .printer = rtems_printk_printer
-};
-
static const char* const test_state_strings[] =
{
"EXPECTED_PASS",
@@ -102,26 +97,3 @@ int rtems_test_end(const char* name)
"\n*** END OF TEST %s ***\n\n", name
);
}
-
-void rtems_test_exit(int status)
-{
- (void) status;
- rtems_shutdown_executive(0);
-}
-
-int rtems_test_printf(
- const char* format,
- ...
-)
-{
- va_list ap;
- int len;
- va_start(ap, format);
- len = rtems_vprintf(
- &rtems_test_printer,
- format,
- ap
- );
- va_end(ap);
- return len;
-}