8 #define TEST_FUNCTION do_test ()
12 static const char modname1
[] = "tst-tlsmod5.so";
13 static const char modname2
[] = "tst-tlsmod6.so";
16 void *h1
= dlopen (modname1
, RTLD_LAZY
);
19 printf ("cannot open '%s': %s\n", modname1
, dlerror ());
22 void *h2
= dlopen (modname2
, RTLD_LAZY
);
25 printf ("cannot open '%s': %s\n", modname2
, dlerror ());
38 #include "../test-skeleton.c"