fpc/tests/test/units/sysutils/texec1.pp
2009-12-11 19:27:14 +00:00

20 lines
333 B
ObjectPascal

{ %result=1 }
{ %NEEDEDAFTER }
{ this test fails when it isn't called by execansi }
uses
sysutils;
const
comparestr='-Fu/usr/local/lib/fpc/1.0.10/units/freebsd/rtl/*';
var
i : Longint;
begin
for i:=1 to 11 do
if ParamStr(i)<>comparestr Then
halt(1);
if paramstr(12)<>'' then
halt(1);
end.