64-bit VFS_LSEEK_OFF
[minix3.git] / test / test63.c
blob8d9581cfec8c17d7472b99307336ee491a892ac2
2 /* Code to test runtime linking functionality.
3 * Load a shared object at runtime and verify that arguments passed to
4 * and from a function that is dynamically looked up make sense.
5 * This tests that (a) dynamic linking works at all (otherwise all the dl*
6 * functions don't work) and (b) the dynamic loading functionality works
7 * and (c) the PLT is sane and calling convention makes sense.
9 * We have to pass an absolute path to dlopen() for which we rely on
10 * the test run script.
12 * The module we load is in mod.c.
15 #include <stdlib.h>
16 #include <stdio.h>
17 #include <dlfcn.h>
19 int max_error = 2;
20 #include "common.h"
23 #include "magic.h"
25 int main (int argc, char *argv[])
27 void *dlhandle;
28 long (*modf) (long, long *, long);
29 long v, *cookie = NULL, cookie2 = 0;
31 start(63);
33 if(argc != 2) {
34 fprintf(stderr, "Usage: %s <module>\n", argv[0]);
35 exit(1);
38 if(!(dlhandle = dlopen(argv[1], RTLD_LAZY))) e(1);
40 if(!(modf = dlsym(dlhandle, "modfunction"))) e(2);
41 if(!(cookie = (long *) dlsym(dlhandle, "cookie"))) e(3);
43 if(*cookie == MAGIC2) { fprintf(stderr, "cookie already set\n"); e(4); }
44 if(cookie2 == MAGIC3) { fprintf(stderr, "cookie2 already set\n"); e(5); }
46 v = modf(MAGIC4, &cookie2, MAGIC5);
48 if(v != MAGIC1) { fprintf(stderr, "return value wrong\n"); e(9); }
49 if(*cookie != MAGIC2) { fprintf(stderr, "cookie set wrongly\n"); e(6); }
50 if(cookie2 != MAGIC3) { fprintf(stderr, "cookie2 set wrongly\n"); e(7); }
52 dlclose(dlhandle);
54 if(v != MAGIC1) { fprintf(stderr, "wrong return value.\n"); e(8); }
56 quit();
58 return(0);