mirror of
git://sourceware.org/git/glibc.git
synced 2024-12-03 04:01:43 +08:00
20 lines
300 B
C
20 lines
300 B
C
|
#include <dlfcn.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
|
||
|
static int
|
||
|
do_test ()
|
||
|
{
|
||
|
const char lib[] = "$ORIGIN/tst-relsort1mod1.so";
|
||
|
void *h = dlopen (lib, RTLD_NOW);
|
||
|
if (h == NULL)
|
||
|
{
|
||
|
puts (dlerror ());
|
||
|
return 1;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
#define TEST_FUNCTION do_test ()
|
||
|
#include "../test-skeleton.c"
|