Test suite results for test file webtbs/tw3780.pp

Test run data :

Run ID:
Operating system: linux
Processor: aarch64
Version: 3.2.3
Fails/OK/Total: 44/7929/7973
Version: 3.2.3
Full version: 3.2.3-1376-gbff5cbd342
Comment: -XR/home/muller/sys-root/aarch64-linux -Xd -Xr/home/muller/sys-root/aarch64-linux
Machine: cfarm421
Category: 1
SVN revisions: bff5cbd342:c17a0e20f5:4f3b6199df:d1c29e6cb9
Submitter: muller
Date: 2024/05/08 18:55:00 <> 2024/05/04
Previous run: 947530
Next run: 948877

Hide skipped tests

Hide successful tests

Test file "webtbs/tw3780.pp" information:

t_id 1525
t_adddate 2005/03/14
t_result 0
t_knownrunerror 0

Detailed test run results:

tr_idruntr_oktr_skiptr_result
525669608948222FalseTrueSkipping test because it is a known bug

Record count: 1

No log of 948222.

Source:

{ Source provided for Free Pascal Bug Report 3780 }
{ Submitted by "Adriaan van Os" on  2005-03-13 }
{ e-mail: fpc@microbizz.nl }
{$mode gpc}
program func;

type tfun = function( x: real): real;

function f( x: real): real;
begin
        f:= x
end;

function fsum( fun: tfun; x1, x2: real): real;
begin
        fsum:= fun( x1) + fun( x2)
end;

begin
        writeln( fsum( f, 1.0, 2.0))
end.

Link to SVN view of webtbs/tw3780.pp source.