summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests
diff options
context:
space:
mode:
authorAschref Ben Thabet <aschref.ben-thabet@embedded-brains.de>2020-08-11 09:45:53 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-08-11 09:49:02 +0200
commit5d7ab6bd21c101efa1c4623af3509bcf66fc23af (patch)
treebcd931150e1e18fb82499a4ccbb8f7c1a67daf37 /testsuites/libtests
parentlibtest: Add T_thread_switch_record() (diff)
downloadrtems-5d7ab6bd21c101efa1c4623af3509bcf66fc23af.tar.bz2
libtests/dl10: Delete unused functions
Diffstat (limited to 'testsuites/libtests')
-rw-r--r--testsuites/libtests/dl10/dl-load.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/testsuites/libtests/dl10/dl-load.c b/testsuites/libtests/dl10/dl-load.c
index dee1d6e9cc..7a4bae9c17 100644
--- a/testsuites/libtests/dl10/dl-load.c
+++ b/testsuites/libtests/dl10/dl-load.c
@@ -96,28 +96,6 @@ static void* dl_load_obj(const char* name, bool has_unresolved)
return handle;
}
-static void dl_close (void* handle)
-{
- int r;
- printf ("handle: %p closing\n", handle);
- r = dlclose (handle);
- if (r != 0)
- printf("dlclose failed: %s\n", dlerror());
- rtems_test_assert (r == 0);
-}
-
-static int dl_call (void* handle, const char* func)
-{
- call_sig call = dlsym (handle, func);
- if (call == NULL)
- {
- printf("dlsym failed: symbol not found: %s\n", func);
- return 1;
- }
- call ();
- return 0;
-}
-
int dl_load_test(void)
{
void* o1;