fpc/tests/webtbs/tw14020.pp
Jonas Maebe 51616b7bd6 * enabled a bunch of tests also for aix
git-svn-id: trunk@20821 -
2012-04-11 18:04:57 +00:00

37 lines
732 B
ObjectPascal

{ %target=linux,freebsd,darwin,solaris,haiku,aix }
program project1;
uses
SysUtils;
var
rSearch: TSearchRec;
lsName, lsSearch: String;
bDone: Boolean;
begin
{ for all files in the dir }
lsSearch := './' + AllFilesMask; //fails to find anything
WriteLn(lsSearch);
FillChar(rSearch, Sizeof(TSearchRec), 0);
bDone := (FindFirst(lsSearch, 0, rSearch) <> 0);
while not bDone do
begin
lsName := rSearch.Name;
Assert(lsName <> '');
if (rSearch.Attr and faDirectory > 0) then
continue;
{ if we find one file, it's ok }
findclose(rsearch);
halt(0);
bDone := (FindNext(rSearch) <> 0);
Assert(bDone or (rSearch.Name <> lsName));
end;
FindClose(rSearch);
halt(1);
end.