aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/libvtv/testsuite/other-tests/dlopen.cc
blob: 4ffbe83acf7718130e0e09e2a05141a8ae60abab (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
#include <stdlib.h>
#include <dlfcn.h>
#include <stdio.h>



typedef void (*voidfn)(void);

int failures = 0;

void
__vtv_verify_fail (void **data_set_ptr, const void *vtbl_pointer)
{
  failures++;
  return;
}


int main()
{
  char so_name[] = "so0.so";
  void * dlhandle = dlopen(so_name, RTLD_NOW);
  if (!dlhandle)
    {
      fprintf(stderr, "dlopen %s error: %s\n", so_name, dlerror());
      exit(1);
    }
  voidfn so_entry = (voidfn)dlsym(dlhandle, "so_entry_0");
  if (!so_entry)
    {
      fprintf(stderr, "dlopen %s dlsym error: %s\n", so_name, dlerror());
      exit(2);
    }

  so_entry();

  dlclose(dlhandle);
}