fpc/tests/test/tlib2b.pp
pierre 4b17961dd4 * Skip some tests for msdos
git-svn-id: trunk@34266 -
2016-08-10 16:10:25 +00:00

23 lines
344 B
ObjectPascal

{ %target=linux,android }
{ %skiptarget=$nosharedlib }
{ %needlibrary }
{ %delfiles=tlib2a }
uses dl;
var
hdl : Pointer;
begin
WriteLn('dlopen');
hdl := dlopen('./libtlib2a.so', RTLD_LAZY);
if hdl = nil then
WriteLn(dlerror())
else
begin
WriteLn('dlclose');
dlclose(hdl);
end;
WriteLn('exit');
end.