Browse Source

* made test more verbose

git-svn-id: trunk@40283 -
florian 6 years ago
parent
commit
c45806c84f
1 changed files with 6 additions and 2 deletions
  1. 6 2
      tests/webtbs/tw13628b.pp

+ 6 - 2
tests/webtbs/tw13628b.pp

@@ -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.