* Added two more tests based on bugs found by Marģers during development

This commit is contained in:
J. Gareth "Curious Kit" Moreton 2024-06-30 03:09:13 +01:00 committed by J. Gareth "Kit" Moreton
parent 5cb2f823d2
commit c7c657a9ec
2 changed files with 33 additions and 0 deletions

18
tests/test/tpure8.pp Normal file
View File

@ -0,0 +1,18 @@
{ %OPT=-Sew }
program tpure8;
function foo(i:longword):ansistring; pure;
var s : shortstring;
n : longword;
begin
s:='';
for n:=1 to i do s:=s +'a';
foo:=s; // Make sure assigning to an ansistring result doesn't make the pure function ineligible.
end;
begin
if (foo(9) <> 'aaaaaaaaa') then
Halt(1);
writeln('ok');
end.

15
tests/test/tpure9.pp Normal file
View File

@ -0,0 +1,15 @@
program tpure9;
function foo(i:longword):shortstring; pure;
var s : shortstring;
n : longword;
begin
s:='';
for n:=1 to i do s:=s +'a';
//-- not assigning return value - make sure this doesn't cause a crash
end;
begin
writeln(foo(9));
writeln('ok');
end.