]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/order2.c
powerpc: Fix build of wcscpy with --disable-multi-arch
[thirdparty/glibc.git] / elf / order2.c
CommitLineData
3d786f19
UD
1#include <dlfcn.h>
2#include <stdio.h>
3
4
5int call_puts;
6
7static int
8do_test (void)
9{
10 call_puts = 1;
11
12 void *h1 = dlopen ("$ORIGIN/order2mod1.so", RTLD_LAZY | RTLD_GLOBAL);
13 if (h1 == NULL)
14 {
15 puts ("cannot load order2mod1");
16 return 1;
17 }
18 void *h2 = dlopen ("$ORIGIN/order2mod2.so", RTLD_LAZY);
19 if (h2 == NULL)
20 {
21 puts ("cannot load order2mod2");
22 return 1;
23 }
24 if (dlclose (h1) != 0)
25 {
26 puts ("dlclose order2mod1 failed");
27 return 1;
28 }
29 if (dlclose (h2) != 0)
30 {
31 puts ("dlclose order2mod2 failed");
32 return 1;
33 }
34 return 0;
35}
36
36fe25fd 37#include <support/test-driver.c>
3d786f19
UD
38
39static void
40__attribute__ ((destructor))
41fini (void)
42{
43 if (call_puts)
44 puts ("5");
45}