Browse Source

* reported bugs

peter 25 years ago
parent
commit
09cebb518b
2 changed files with 20 additions and 0 deletions
  1. 12 0
      tests/webtbs/tw1295.pp
  2. 8 0
      tests/webtbs/tw1299.pp

+ 12 - 0
tests/webtbs/tw1295.pp

@@ -0,0 +1,12 @@
+USES DOS;
+var
+  d : longint;
+BEGIN
+   {$I-}
+   d:=DISKSIZE(1);
+   writeln(d);
+   WRITELN(IORESULT);
+   {$I+}
+   if d<>-1 then
+    halt(1);
+END.

+ 8 - 0
tests/webtbs/tw1299.pp

@@ -0,0 +1,8 @@
+{$mode fpc}
+
+{$IFDEF fpc}
+{$ELSE}
+'{'
+{$ENDIF}
+begin
+end.