fpc/tests/webtbs/tw25932.pp
Jonas Maebe 02ce2e6029 * moved to correct directory
git-svn-id: trunk@27695 -
2014-04-30 19:25:02 +00:00

106 lines
1.4 KiB
ObjectPascal

{$mode delphi}
uses
sysutils;
procedure testfile;
var
f: file;
s: shortstring;
a: ansistring;
u: unicodestring;
begin
s:='a';
a:='b';
u:='c';
fillchar(f,sizeof(f),0);
try
erase(f);
except
on e: EInOutError do
if e.ErrorCode<>102 then
raise
end;
fillchar(f,sizeof(f),0);
try
rename(f,s);
except
on e: EInOutError do
if e.ErrorCode<>102 then
raise
end;
fillchar(f,sizeof(f),0);
try
rename(f,a);
except
on e: EInOutError do
if e.ErrorCode<>102 then
raise
end;
fillchar(f,sizeof(f),0);
try
rename(f,u);
except
on e: EInOutError do
if e.ErrorCode<>102 then
raise
end;
end;
procedure testtext;
var
f: text;
s: shortstring;
a: ansistring;
u: unicodestring;
begin
s:='a';
a:='b';
u:='c';
fillchar(f,sizeof(f),0);
try
erase(f);
except
on e: EInOutError do
if e.ErrorCode<>102 then
raise
end;
fillchar(f,sizeof(f),0);
try
rename(f,s);
except
on e: EInOutError do
if e.ErrorCode<>102 then
raise
end;
fillchar(f,sizeof(f),0);
try
rename(f,a);
except
on e: EInOutError do
if e.ErrorCode<>102 then
raise
end;
fillchar(f,sizeof(f),0);
try
rename(f,u);
except
on e: EInOutError do
if e.ErrorCode<>102 then
raise
end;
end;
begin
testfile;
end.