freebsd-dev/contrib/netbsd-tests/lib/csu/h_initfini3.cxx
Enji Cooper 57718be8fa Import the NetBSD test suite from ^/vendor/NetBSD/tests/09.30.2014_20.45 ,
minus the vendor Makefiles

Provide directions for how to bootstrap the vendor sources in
FREEBSD-upgrade

MFC after 2 weeks
Discussed with: rpaulo
Sponsored by: EMC / Isilon Storage Division
2014-10-02 23:26:49 +00:00

23 lines
513 B
C++

#include <dlfcn.h>
#include <err.h>
#include <unistd.h>
int
main(void)
{
static const char msg1[] = "main started\n";
static const char msg2[] = "main after dlopen\n";
static const char msg3[] = "main terminated\n";
void *handle;
write(STDOUT_FILENO, msg1, sizeof(msg1) - 1);
handle = dlopen("h_initfini3_dso.so", RTLD_NOW | RTLD_LOCAL);
if (handle == NULL)
err(1, "dlopen");
write(STDOUT_FILENO, msg2, sizeof(msg2) - 1);
dlclose(handle);
write(STDOUT_FILENO, msg3, sizeof(msg3) - 1);
return 0;
}