fpc/tests/test/tmt1.pp
Nikolay Nikolov d561390687 + increase WebAssembly max memory limit for test tmt1.pp, because the test runs
out of memory with the default memory limit of 256 MiB
2024-08-24 13:12:08 +03:00

68 lines
1.3 KiB
ObjectPascal

{ %skiptarget=$nothread }
{ %version=1.1 }
{$mode objfpc}
{$ifdef CPUWASM32}
{ This test runs out of memory, when using the default WebAssembly shared
memory limit of 256 MiB, so we increase it to 512 MiB }
{$M 1048576,536870912,536870912}
{$endif}
uses
{$ifdef unix}
cthreads,
{$endif}
sysutils
;
const
{$if defined(cpuarm) or defined(cpuavr) or defined(cpui8086) or defined(cpum68k) or defined(cpumips) or defined(cpuz80)}
{$define slowcpu}
{$endif}
{$ifdef slowcpu}
threadcount = 40;
stringlen = 2000;
{$else slowcpu}
threadcount = 100;
stringlen = 10000;
{$endif slowcpu}
var
finished : longint;
threadvar
thri : longint;
function f(p : pointer) : ptrint;
var
s : ansistring;
begin
writeln('thread ',longint(p),' started');
thri:=0;
while (thri<stringlen) do
begin
s:=s+'1';
inc(thri);
end;
writeln('thread ',longint(p),' finished');
InterLockedIncrement(finished);
f:=0;
end;
var
i : ptrint;
started: longint;
begin
finished:=0;
started:=0;
for i:=1 to threadcount do
if BeginThread({$ifdef fpc}@{$endif}f,pointer(i)) <> tthreadid(0) then
inc(started);
while volatile(finished)<started do
{$ifdef wince}sleep(10){$endif};
writeln(finished);
end.