mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 23:31:49 +02:00
* New test based on webtbs/tw38337 that helps catch internal error 200307043
This commit is contained in:
parent
d39c7e3974
commit
6cd6566528
18
tests/webtbs/tw38337.inc
Normal file
18
tests/webtbs/tw38337.inc
Normal file
@ -0,0 +1,18 @@
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
function UTF8Length(const s: string): PtrInt; inline;
|
||||
begin
|
||||
Result:=9;
|
||||
end;
|
||||
|
||||
|
||||
var
|
||||
v1: string;
|
||||
s: shortstring;
|
||||
i: Integer;
|
||||
begin
|
||||
v1 := '123456789';
|
||||
s := v1;
|
||||
for i := 1 to UTF8Length(s)-8 do begin
|
||||
end;
|
||||
end.
|
@ -1,20 +1,2 @@
|
||||
program fs;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
function UTF8Length(const s: string): PtrInt; inline;
|
||||
begin
|
||||
Result:=9;
|
||||
end;
|
||||
|
||||
|
||||
var
|
||||
v1: string;
|
||||
s: shortstring;
|
||||
i: Integer;
|
||||
begin
|
||||
v1 := '123456789';
|
||||
s := v1;
|
||||
for i := 1 to UTF8Length(s)-8 do begin
|
||||
end;
|
||||
end.
|
||||
program tw38337;
|
||||
{$I tw38337.inc}
|
9
tests/webtbs/tw38337a.pp
Normal file
9
tests/webtbs/tw38337a.pp
Normal file
@ -0,0 +1,9 @@
|
||||
{ %OPT=-O3 }
|
||||
{ %CPU=i386,x86_64 }
|
||||
|
||||
{ This variant of tw38337 helps to catch out Internal Error 200307043 that
|
||||
sometimes got triggered during pure function development (even though the
|
||||
test itself doesn't use a pure function). }
|
||||
|
||||
program tw38337a;
|
||||
{$I tw38337.inc}
|
Loading…
Reference in New Issue
Block a user