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

t_id 751
t_adddate 2003/10/03
t_result 0
Flag t_norun set
t_knownrunerror 0

Detailed test run results:

Record count: 50

Total = 50

OK=0 Percentage= 0.00

Skipped=50 Percentage= 100.00

Result type Cat. Count Percentage First date Last Date
Skipping run test 50 100.0 2024/05/08 11:24:00 238 2024/05/08 15:10:00 25
i386 9 18.0 2024/05/08 12:17:00 25 2024/05/08 15:10:00 25
m68k 2 4.0 2024/05/08 12:40:00 244 2024/05/08 12:52:00 58
sparc 5 10.0 2024/05/08 11:58:00 56 2024/05/08 13:43:00 62
powerpc 3 6.0 2024/05/08 11:24:00 238 2024/05/08 13:17:00 181
arm 2 4.0 2024/05/08 12:28:00 33 2024/05/08 12:36:00 210
x86_64 6 12.0 2024/05/08 12:06:00 41 2024/05/08 14:13:00 40
powerpc64 6 12.0 2024/05/08 11:36:00 242 2024/05/08 13:33:00 60
mips 2 4.0 2024/05/08 12:44:00 239 2024/05/08 13:01:00 154
mipsel 2 4.0 2024/05/08 12:48:00 183 2024/05/08 13:10:00 228
aarch64 4 8.0 2024/05/08 11:57:00 41 2024/05/08 12:29:00 32
sparc64 6 12.0 2024/05/08 11:58:00 155 2024/05/08 14:06:00 137
riscv64 2 4.0 2024/05/08 11:57:00 31 2024/05/08 12:10:00 36
loongarch64 1 2.0 2024/05/08 12:37:00 36 2024/05/08 12:37:00 36
linux 43 86.0 2024/05/08 11:24:00 238 2024/05/08 14:13:00 40
win32 7 14.0 2024/05/08 12:17:00 25 2024/05/08 15:10:00 25
3.3.1 33 66.0 2024/05/08 11:24:00 238 2024/05/08 15:10:00 25
3.2.3 17 34.0 2024/05/08 11:57:00 41 2024/05/08 14:13:00 40

Source:

{ %NORUN }
{ DONT RUN THIS CODE, its creates an infinite recursion }
{ Code unchanged as this is a test for a compile time GPF. PM }
{ Source provided for Free Pascal Bug Report 1044 }
{ Submitted by "Geoffrey A Swift" on  2000-07-16 }
{ e-mail: blimey@toke.com }
{$mode objfpc}
type
  subrange = 1..6;
  subset = set of subrange;
function solve(numbers : subset) : boolean;
var
  i: subrange;
begin
  if numbers <> [] then
    for i := low(subrange) to high(subrange) do
      result := solve(numbers - [i])
end;
begin
  solve([1,2,3,4,5,6])
end.

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