瀏覽代碼

* extended test to cover last commit

florian 3 年之前
父節點
當前提交
2ee6a81cff
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      tests/test/units/system/tparam.pp

+ 4 - 1
tests/test/units/system/tparam.pp

@@ -1,4 +1,3 @@
-{ %INTERACTIVE }
 program tparam;
 
 var
@@ -8,4 +7,8 @@ Begin
    Begin
      WriteLn(paramStr(i));
    End;
+  for i:=-127 to -1 do
+    if paramStr(i)<>'' then
+      halt(1);
+  writeln('ok')
 end.