Test suite results for test file webtbs/tw2311.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/tw2311.pp" information:

t_id 940
t_cpu i386
t_adddate 2003/10/03
t_result 0
t_knownrunerror 0
t_opts -O1 -CX

Detailed test run results:

Record count: 50

Total = 50

OK=9 Percentage= 18.00

Skipped=41 Percentage= 82.00

Result type Cat. Count Percentage First date Last Date
Successfully run 9 18.0 2024/05/08 12:17:00 25 2024/05/08 15:10:00 25
i386 9 100.0 2024/05/08 12:17:00 25 2024/05/08 15:10:00 25
linux 2 22.2 2024/05/08 12:32:00 236 2024/05/08 12:44:00 172
win32 7 77.8 2024/05/08 12:17:00 25 2024/05/08 15:10:00 25
3.3.1 7 77.8 2024/05/08 12:32:00 236 2024/05/08 15:10:00 25
3.2.3 2 22.2 2024/05/08 12:17:00 25 2024/05/08 12:44:00 172
Skipping test because for other cpu 41 82.0 2024/05/08 12:03:00 74 2024/05/08 16:52:00 32
m68k 2 4.9 2024/05/08 12:40:00 244 2024/05/08 12:52:00 58
sparc 4 9.8 2024/05/08 12:03:00 74 2024/05/08 13:43:00 62
powerpc 2 4.9 2024/05/08 12:52:00 243 2024/05/08 13:17:00 181
arm 2 4.9 2024/05/08 12:28:00 33 2024/05/08 12:36:00 210
x86_64 5 12.2 2024/05/08 12:20:00 29 2024/05/08 14:13:00 40
powerpc64 4 9.8 2024/05/08 12:55:00 242 2024/05/08 13:33:00 60
mips 3 7.3 2024/05/08 12:44:00 239 2024/05/08 16:39:00 49
mipsel 2 4.9 2024/05/08 12:48:00 183 2024/05/08 13:10:00 228
aarch64 10 24.4 2024/05/08 12:20:00 37 2024/05/08 16:52:00 32
sparc64 5 12.2 2024/05/08 12:16:00 157 2024/05/08 14:06:00 137
riscv64 1 2.4 2024/05/08 12:10:00 36 2024/05/08 12:10:00 36
loongarch64 1 2.4 2024/05/08 12:37:00 36 2024/05/08 12:37:00 36
linux 34 82.9 2024/05/08 12:03:00 74 2024/05/08 16:39:00 49
darwin 7 17.1 2024/05/08 16:11:00 32 2024/05/08 16:52:00 32
3.3.1 22 53.7 2024/05/08 12:03:00 74 2024/05/08 16:39:00 49
3.2.3 19 46.3 2024/05/08 12:20:00 37 2024/05/08 16:52:00 32

Source:

{ %CPU=i386 }
{ %OPT=-O1 -CX }
{ Source provided for Free Pascal Bug Report 2311 }
{ Submitted by "Michael Brown" on  2003-01-06 }
{ e-mail: emboss1@i4free.co.nz }
{ modified by Pierre Muller to get a good check }
{$goto on}

program Kernel;

procedure DisplayRAM;
begin
end;

const
  passes : longint = 0;
  i : longint = 0;
label
  end_label;
begin

  inc(passes);

  if passes>1 then
    goto end_label;
  DisplayRAM;

  while true do
  begin
    asm
      nop
    end;
    inc(i);
    Writeln(i);
    if i > 10 then
      break;
  end;
 end_label:
   if passes<>1 then
     begin
       writeln('Error in test 2311');
       halt(1);
     end;
end.


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