summaryrefslogtreecommitdiffstats
path: root/testsuites/samples/hello/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/samples/hello/init.c')
-rw-r--r--testsuites/samples/hello/init.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/testsuites/samples/hello/init.c b/testsuites/samples/hello/init.c
index d8fe4507a7..ea9af89940 100644
--- a/testsuites/samples/hello/init.c
+++ b/testsuites/samples/hello/init.c
@@ -22,11 +22,13 @@
rtems_task Init(rtems_task_argument argument);
const char rtems_test_name[] = "HELLO WORLD";
+rtems_printer rtems_test_printer;
rtems_task Init(
rtems_task_argument ignored
)
{
+ rtems_print_printer_printf(&rtems_test_printer);
rtems_test_begin();
printf( "Hello World\n" );
rtems_test_end();