mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 22:30:07 +00:00
e2b918d05d
The test error messages incorrectly reference LIBC_SO when they should reference the dlmopen'd library tst-dlmopen1mod.so. Define TEST_SO and use it in all the error messages.
82 lines
1.6 KiB
C
82 lines
1.6 KiB
C
#include <dlfcn.h>
|
|
#include <stdio.h>
|
|
#include <gnu/lib-names.h>
|
|
|
|
#define TEST_SO "$ORIGIN/tst-dlmopen1mod.so"
|
|
|
|
static int
|
|
do_test (void)
|
|
{
|
|
void *h = dlopen (LIBC_SO, RTLD_LAZY|RTLD_NOLOAD);
|
|
if (h == NULL)
|
|
{
|
|
printf ("cannot get handle for %s: %s\n", LIBC_SO, dlerror ());
|
|
return 1;
|
|
}
|
|
|
|
Lmid_t ns = -10;
|
|
if (dlinfo (h, RTLD_DI_LMID, &ns) != 0)
|
|
{
|
|
printf ("dlinfo for %s in %s failed: %s\n",
|
|
LIBC_SO, __func__, dlerror ());
|
|
return 1;
|
|
}
|
|
|
|
if (ns != LM_ID_BASE)
|
|
{
|
|
printf ("namespace for %s not LM_ID_BASE\n", LIBC_SO);
|
|
return 1;
|
|
}
|
|
|
|
if (dlclose (h) != 0)
|
|
{
|
|
printf ("dlclose for %s in %s failed: %s\n",
|
|
LIBC_SO, __func__, dlerror ());
|
|
return 1;
|
|
}
|
|
|
|
h = dlmopen (LM_ID_NEWLM, TEST_SO, RTLD_LAZY);
|
|
if (h == NULL)
|
|
{
|
|
printf ("cannot get handle for %s: %s\n",
|
|
"tst-dlmopen1mod.so", dlerror ());
|
|
return 1;
|
|
}
|
|
|
|
ns = -10;
|
|
if (dlinfo (h, RTLD_DI_LMID, &ns) != 0)
|
|
{
|
|
printf ("dlinfo for %s in %s failed: %s\n",
|
|
"tst-dlmopen1mod.so", __func__, dlerror ());
|
|
return 1;
|
|
}
|
|
|
|
if (ns == LM_ID_BASE)
|
|
{
|
|
printf ("namespace for %s is LM_ID_BASE\n", TEST_SO);
|
|
return 1;
|
|
}
|
|
|
|
int (*fct) (Lmid_t) = dlsym (h, "foo");
|
|
if (fct == NULL)
|
|
{
|
|
printf ("could not find %s: %s\n", "foo", dlerror ());
|
|
return 1;
|
|
}
|
|
|
|
if (fct (ns) != 0)
|
|
return 1;
|
|
|
|
if (dlclose (h) != 0)
|
|
{
|
|
printf ("dlclose for %s in %s failed: %s\n",
|
|
TEST_SO, __func__, dlerror ());
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
#define TEST_FUNCTION do_test ()
|
|
#include "../test-skeleton.c"
|