summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/dl04
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2018-04-12 17:48:28 +1000
committerChris Johns <chrisj@rtems.org>2018-04-12 17:59:46 +1000
commit696b9121a2b7ec80464d13c723e6c780a3e5608c (patch)
tree7a88ce876403a932dd3fa5aa459e33ecdce6e851 /testsuites/libtests/dl04
parentlibdl: Remove _t from all structures as this is reserved for the standards (diff)
downloadrtems-696b9121a2b7ec80464d13c723e6c780a3e5608c.tar.bz2
libdl: Fix the tests loading the correct files
Diffstat (limited to 'testsuites/libtests/dl04')
-rw-r--r--testsuites/libtests/dl04/dl-load.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/libtests/dl04/dl-load.c b/testsuites/libtests/dl04/dl-load.c
index 1409d79a9f..38810f48a9 100644
--- a/testsuites/libtests/dl04/dl-load.c
+++ b/testsuites/libtests/dl04/dl-load.c
@@ -26,7 +26,7 @@ int dl_load_test(void)
const char* err;
rtems_rtl_trace_set_mask(RTEMS_RTL_TRACE_ALL);
- handle = dlopen("/dl-o4.o", RTLD_GLOBAL | RTLD_NOW);
+ handle = dlopen("/dl04-o4.o", RTLD_GLOBAL | RTLD_NOW);
err = dlerror();
if (err != NULL)
printf("dlopen: %s\n", err);