aboutsummaryrefslogtreecommitdiff
path: root/libphobos/testsuite/libphobos.shared/libloaddep.d
blob: 93a2dabc4cae3b8a205d99c285b99b5c1d9424b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import core.runtime, core.sys.posix.dlfcn;

extern(C) alias RunTests = int function();

extern(C) int runDepTests(const char* name)
{
    auto h = rt_loadLibrary(name);
    if (h is null) return false;
    auto runTests = cast(RunTests).dlsym(h, "runTests");
    assert(runTests !is null);
    if (!runTests()) return false;
    return rt_unloadLibrary(h);
}