summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/dl02
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-11-15 07:55:43 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-11-15 08:10:20 +0100
commit62119d21da8c7893cecbbf57c1478dcbabb63370 (patch)
tree9370bba18fda105a2a85b81dd4a95c20793ab1f3 /testsuites/libtests/dl02
parentleon, grspw_router: Clear only error bits defined by clear mask (diff)
downloadrtems-62119d21da8c7893cecbbf57c1478dcbabb63370.tar.bz2
dl01, dl02, dl05: Fix unresolved printf symbol
The link time wrap of printf leads to unresolved symbols in the loadable modules. This resulted in infinite loops and test timeouts. Use rtems_printf() for output. Update #3199.
Diffstat (limited to 'testsuites/libtests/dl02')
-rw-r--r--testsuites/libtests/dl02/dl-o1.c7
-rw-r--r--testsuites/libtests/dl02/dl-o2.c6
2 files changed, 8 insertions, 5 deletions
diff --git a/testsuites/libtests/dl02/dl-o1.c b/testsuites/libtests/dl02/dl-o1.c
index ff5a853c33..a4355d6e37 100644
--- a/testsuites/libtests/dl02/dl-o1.c
+++ b/testsuites/libtests/dl02/dl-o1.c
@@ -6,12 +6,13 @@
* http://www.rtems.org/license/LICENSE.
*/
-#include <stdio.h>
-#include <stdlib.h>
+#include "dl-o2.h"
#include <dlfcn.h>
-#include "dl-o2.h"
+#include <rtems/test.h>
+
+#define printf(...) rtems_printf(&rtems_test_printer, __VA_ARGS__);
typedef int (*func1_t)(int argc, const char* argv[]);
diff --git a/testsuites/libtests/dl02/dl-o2.c b/testsuites/libtests/dl02/dl-o2.c
index 43a337a1c0..4c1a918dea 100644
--- a/testsuites/libtests/dl02/dl-o2.c
+++ b/testsuites/libtests/dl02/dl-o2.c
@@ -6,10 +6,12 @@
* http://www.rtems.org/license/LICENSE.
*/
-#include <stdio.h>
-
#include "dl-o2.h"
+#include <rtems/test.h>
+
+#define printf(...) rtems_printf(&rtems_test_printer, __VA_ARGS__);
+
int dl_o2_func1 (int argc, char* argv[])
{
int arg;