execedbya.pp 312 B

123456789101112131415161718
  1. { %fail }
  2. { this test fails when it isn't called by execansi }
  3. uses
  4. sysutils;
  5. const
  6. comparestr='-Fu/usr/local/lib/fpc/1.0.10/units/freebsd/rtl/*';
  7. var
  8. i : Longint;
  9. begin
  10. for i:=1 to 11 do
  11. if ParamStr(i)<>comparestr Then
  12. halt(1);
  13. if paramstr(12)<>'' then
  14. halt(1);
  15. end.