summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/dl01
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/dl01
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/dl01')
-rw-r--r--testsuites/libtests/dl01/dl-load.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/libtests/dl01/dl-load.c b/testsuites/libtests/dl01/dl-load.c
index e8f84bd5b5..5438196e67 100644
--- a/testsuites/libtests/dl01/dl-load.c
+++ b/testsuites/libtests/dl01/dl-load.c
@@ -28,9 +28,9 @@ int dl_load_test(void)
int unresolved;
char* message = "loaded";
- printf("load: /dl-o1.o\n");
+ printf("load: /dl01-o1.o\n");
- handle = dlopen ("/dl-o1.o", RTLD_NOW | RTLD_GLOBAL);
+ handle = dlopen ("/dl01-o1.o", RTLD_NOW | RTLD_GLOBAL);
if (!handle)
{
printf("dlopen failed: %s\n", dlerror());