* made test more verbose

git-svn-id: trunk@40283 -
This commit is contained in:
florian 2018-11-11 17:32:21 +00:00
parent e8ebc00b3b
commit c45806c84f

View File

@ -29,7 +29,11 @@ var
begin
hdl := loadlibrary(libname);
if (hdl=nilhandle) then
halt(1);
begin
writeln(GetLoadErrorStr);
halt(1);
end;
if not UnloadLibrary(hdl) then
halt(2);;
halt(2);
writeln('ok');
end.