summaryrefslogtreecommitdiffstats
path: root/testsuites/samples
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-10-26 13:59:08 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-10-28 13:33:55 +0200
commit46ddc3c5daa97cd5d96f5c495e98d2854dbfa8d6 (patch)
tree7205ecec22e6f309bd2768678136bf375a29a025 /testsuites/samples
parenttests: Use rtems_test_printer (diff)
downloadrtems-46ddc3c5daa97cd5d96f5c495e98d2854dbfa8d6.tar.bz2
tests: Use rtems_print_printer_fprintf_putc()
Use rtems_print_printer_fprintf_putc() instead of rtems_print_printer_printf() to output via rtems_putc(). Update #3170. Update #3199.
Diffstat (limited to 'testsuites/samples')
-rw-r--r--testsuites/samples/capture/init.c2
-rw-r--r--testsuites/samples/hello/init.c2
-rw-r--r--testsuites/samples/loopback/init.c2
-rw-r--r--testsuites/samples/paranoia/init.c2
-rw-r--r--testsuites/samples/pppd/init.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/testsuites/samples/capture/init.c b/testsuites/samples/capture/init.c
index 24f04c50a2..2bf21c8acc 100644
--- a/testsuites/samples/capture/init.c
+++ b/testsuites/samples/capture/init.c
@@ -48,7 +48,7 @@ rtems_task Init(
rtems_task_priority old_priority;
rtems_mode old_mode;
- rtems_print_printer_printf(&rtems_test_printer);
+ rtems_print_printer_fprintf_putc(&rtems_test_printer);
rtems_test_begin();
status = rtems_shell_wait_for_input(
diff --git a/testsuites/samples/hello/init.c b/testsuites/samples/hello/init.c
index ba379fbaa0..216a8b7e06 100644
--- a/testsuites/samples/hello/init.c
+++ b/testsuites/samples/hello/init.c
@@ -28,7 +28,7 @@ rtems_task Init(
rtems_task_argument ignored
)
{
- rtems_print_printer_printf(&rtems_test_printer);
+ rtems_print_printer_fprintf_putc(&rtems_test_printer);
rtems_test_begin();
printf( "Hello World\n" );
rtems_test_end();
diff --git a/testsuites/samples/loopback/init.c b/testsuites/samples/loopback/init.c
index 3ff8fbd41e..0532ef091b 100644
--- a/testsuites/samples/loopback/init.c
+++ b/testsuites/samples/loopback/init.c
@@ -248,7 +248,7 @@ Init (rtems_task_argument ignored)
{
rtems_status_code sc;
- rtems_print_printer_printf(&rtems_test_printer);
+ rtems_print_printer_fprintf_putc(&rtems_test_printer);
rtems_test_begin();
diff --git a/testsuites/samples/paranoia/init.c b/testsuites/samples/paranoia/init.c
index 4326db3b6f..1ee4db0b84 100644
--- a/testsuites/samples/paranoia/init.c
+++ b/testsuites/samples/paranoia/init.c
@@ -37,7 +37,7 @@ rtems_task Init(
M68KFPSPInstallExceptionHandlers ();
#endif
- rtems_print_printer_printf(&rtems_test_printer);
+ rtems_print_printer_fprintf_putc(&rtems_test_printer);
rtems_test_begin();
paranoia(1, args);
rtems_test_end();
diff --git a/testsuites/samples/pppd/init.c b/testsuites/samples/pppd/init.c
index d689ff1e71..1a9ddeee21 100644
--- a/testsuites/samples/pppd/init.c
+++ b/testsuites/samples/pppd/init.c
@@ -39,7 +39,7 @@ rtems_task Init(rtems_task_argument argument)
{
rtems_status_code status;
- rtems_print_printer_printf(&rtems_test_printer);
+ rtems_print_printer_fprintf_putc(&rtems_test_printer);
rtems_test_begin();