Test suite results for test file webtbs/tw0876.pp

Test run data :

Free Pascal Compiler Test Suite Results

View Test suite results

Please specify search criteria:
File:
Operating system:
Processor:
Version
Date
Submitter
Machine
Comment
Limit
Cond
Category
Only failed tests
Hide skipped tests
List all tests

Test file "webtbs/tw0876.pp" information:

t_id 718
t_adddate 2003/10/03
t_result 0
t_knownrunerror 0
t_opts -pg

Detailed test run results:

Record count: 50

Total = 50

OK=50 Percentage= 100.00

Result type Cat. Count Percentage First date Last Date
Successfully run 50 100.0 2024/05/22 01:22:00 32 2024/05/22 01:56:00 0
i386 31 62.0 2024/05/22 01:22:00 32 2024/05/22 01:55:00 0
x86_64 17 34.0 2024/05/22 01:34:00 14 2024/05/22 01:56:00 0
aarch64 2 4.0 2024/05/22 01:40:00 32 2024/05/22 01:45:00 37
linux 50 100.0 2024/05/22 01:22:00 32 2024/05/22 01:56:00 0
3.3.1 27 54.0 2024/05/22 01:34:00 28 2024/05/22 01:53:00 16
3.2.3 23 46.0 2024/05/22 01:22:00 32 2024/05/22 01:56:00 0

Source:

{ %OPT=-pg }

program test1;
var
  i,j:longint;
  l : longint;
  a,b:double;

procedure test;
begin
 b:=1.0;
 i:=2;
 a:=b+3;
 j:=i div 2;
end;

procedure test2;
begin
  test;
  Writeln('i=',i,' l=',l);
end;

begin
  for l:=1 to 10000 do
    begin
      test;
      test2;
      test;
    end;
end.

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