fpc/tests/test/tisoext4.pp
yury 9ef7a17390 * Delete temp files after test.
git-svn-id: trunk@39918 -
2018-10-12 15:08:30 +00:00

18 lines
240 B
ObjectPascal

{$mode iso}
var
f : text;
s : array[0..10] of char;
begin
rewrite(f,'tisoext4.tmp');
write(f,'FPC');
close(f);
reset(f,'tisoext4.tmp');
read(f,s);
if s<>'FPC' then
halt(1);
close(f);
erase(f);
writeln('ok');
end.