mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00

Co-Authored-By: Geod24 <pro.mathias.lang@gmail.com> Co-Authored-By: Martin Kinkelin <noone@nowhere.com> Co-Authored-By: Vladimir Panteleev <git@cy.md>
17 lines
405 B
D
17 lines
405 B
D
import dshell;
|
|
|
|
int main()
|
|
{
|
|
if (OS != "linux")
|
|
{
|
|
writefln("Skipping shared library test on %s.", OS);
|
|
return DISABLED;
|
|
}
|
|
|
|
run("$DMD -m$MODEL -of$OUTPUT_BASE/a$EXE -defaultlib=libphobos2.so $EXTRA_FILES/test_shared.d");
|
|
run("$OUTPUT_BASE/a$EXE", stdout, stderr, [
|
|
"LD_LIBRARY_PATH" : "../../../phobos/generated/"~OS~'/'~BUILD~'/'~MODEL
|
|
]);
|
|
|
|
return 0;
|
|
}
|