File: tst-unique3.cc

package info (click to toggle)
glibc 2.41-12
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 300,384 kB
  • sloc: ansic: 1,050,583; asm: 238,243; makefile: 20,379; python: 13,537; sh: 11,827; cpp: 5,197; awk: 1,795; perl: 317; yacc: 292; pascal: 182; sed: 19
file content (26 lines) | stat: -rw-r--r-- 534 bytes parent folder | download | duplicates (4)
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
#include "tst-unique3.h"

#include <cstdio>
#include "../dlfcn/dlfcn.h"

extern template struct S<char>;

int t = S<char>::i;

int
main (void)
{
  std::printf ("%d %d\n", S<char>::i, t);
  int result = S<char>::i++ != 1 || t != 1;
  result |= in_lib ();
  void *d = dlopen ("$ORIGIN/tst-unique3lib2.so", RTLD_LAZY);
  int (*fp) ();
  if (d == NULL || (fp = (int(*)()) dlsym (d, "in_lib2")) == NULL)
    {
      std::printf ("failed to get symbol in_lib2\n");
      return 1;
    }
  result |= fp ();
  dlclose (d);
  return result;
}