summaryrefslogtreecommitdiff
path: root/elf/tst-unique1.c
blob: 17af6f1b187b1b5fd32145fdff964d6579cecf9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#include <config.h>
#include <dlfcn.h>
#include <stdio.h>
#include <sys/mman.h>

static int
do_test (void)
{
  void *h1 = dlopen ("tst-unique1mod1.so", RTLD_LAZY);
  if (h1 == NULL)
    {
      puts ("cannot load tst-unique1mod1");
      return 1;
    }
  int *(*f1) (void) = dlsym (h1, "f");
  if (f1 == NULL)
    {
      puts ("cannot locate f in tst-unique1mod1");
      return 1;
    }
  void *h2 = dlopen ("tst-unique1mod2.so", RTLD_LAZY);
  if (h2 == NULL)
    {
      puts ("cannot load tst-unique1mod2");
      return 1;
    }
  int (*f2) (int *) = dlsym (h2, "f");
  if (f2 == NULL)
    {
      puts ("cannot locate f in tst-unique1mod2");
      return 1;
    }
  if (f2 (f1 ()))
    {
      puts ("f from tst-unique1mod2 failed");
      return 1;
    }
  dlclose (h2);
  dlclose (h1);
  mmap (NULL, 1024 * 1024 * 16, PROT_NONE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
  h2 = dlopen ("tst-unique1mod2.so", RTLD_LAZY);
  if (h2 == NULL)
    {
      puts ("cannot load tst-unique1mod2");
      return 1;
    }
  f2 = dlsym (h2, "f");
  if (f2 == NULL)
    {
      puts ("cannot locate f in tst-unique1mod2");
      return 1;
    }
  h1 = dlopen ("tst-unique1mod1.so", RTLD_LAZY);
  if (h1 == NULL)
    {
      puts ("cannot load tst-unique1mod1");
      return 1;
    }
  f1 = dlsym (h1, "f");
  if (f1 == NULL)
    {
      puts ("cannot locate f in tst-unique1mod1");
      return 1;
    }
  if (f2 (f1 ()))
    {
      puts ("f from tst-unique1mod2 failed");
      return 1;
    }
  return 0;
}

#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"