fpc/tests/webtbs/tw9089d.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

19 lines
260 B
ObjectPascal

{ %target=win32,win64,wince,darwin,linux,freebsd,solaris,beos,aix }
uses
SysUtils;
var
t: text;
begin
{ see tw9089b.pp }
assign(t,'tw9089b.txt');
{$i-}
reset(t);
{$i+}
if ioresult<>0 then
halt(1);
close(t);
erase(t);
writeln('ok');
end.