8 #define TEST_FUNCTION do_test ()
13 static const char modname1
[] = "tst-tlsmod5.so";
14 static const char modname2
[] = "tst-tlsmod6.so";
17 void *h1
= dlopen (modname1
, RTLD_LAZY
);
20 printf ("cannot open '%s': %s\n", modname1
, dlerror ());
23 void *h2
= dlopen (modname2
, RTLD_LAZY
);
26 printf ("cannot open '%s': %s\n", modname2
, dlerror ());
42 #include "../test-skeleton.c"