fpc/tests/webtbs/tw1479.pp
2001-05-20 12:07:56 +00:00

18 lines
284 B
ObjectPascal

{$ifdef fpc}{$mode objfpc}{$endif}
uses
sysutils;
var
fn : string;
begin
fn:=FileSearch('tw1479.pp',';');
writeln('found: ',fn);
if fn<>'tw1479.pp' then
halt(1);
fn:=FileSearch('.\tw1479.pp',';');
writeln('found: ',fn);
if fn<>'.\tw1479.pp' then
halt(1);
end.