fpc/tests/webtbs/tw9089d.pp
yury 87df3ab325 * Enable more tests for android.
git-svn-id: branches/targetandroid@23404 -
2013-01-16 10:57:51 +00:00

19 lines
268 B
ObjectPascal

{ %target=win32,win64,wince,darwin,linux,freebsd,solaris,beos,aix,android }
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.