* Delete temp files after test.

git-svn-id: trunk@39918 -
This commit is contained in:
yury 2018-10-12 15:08:30 +00:00
parent 5fc2ea362f
commit 9ef7a17390
2 changed files with 2 additions and 0 deletions

View File

@ -12,6 +12,7 @@ begin
if b<>123 then
halt(1);
close(f);
erase(f);
writeln('ok');
end.

View File

@ -11,6 +11,7 @@ begin
if s<>'FPC' then
halt(1);
close(f);
erase(f);
writeln('ok');
end.