#include "testutils.h" #include "version.h" #if HAVE_DLFCN_H #include #endif int main (int argc, char **argv) { #if HAVE_LIBDL void *handle = dlopen ("../libnettle.so", RTLD_NOW); int (*get_version)(void); if (!handle) { fprintf (stderr, "dlopen failed: %s\n", dlerror()); FAIL (); } get_version = (int(*)(void)) dlsym (handle, "nettle_version_minor"); if (!get_version) { fprintf (stderr, "dlsym failed: %s\n", dlerror()); FAIL (); } if (get_version() != NETTLE_VERSION_MINOR) { fprintf (stderr, "unexpected nettle version\n"); FAIL (); } return EXIT_SUCCESS; #else SKIP(); #endif }