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

t_id 787
t_adddate 2003/10/03
t_result 0
t_knownrunerror 0

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/10/19 07:29:00 50 2024/10/19 13:30:00 22
i386 5 10.0 2024/10/19 08:55:00 60 2024/10/19 11:13:00 63
m68k 3 6.0 2024/10/19 07:29:00 50 2024/10/19 10:22:00 40
sparc 3 6.0 2024/10/19 08:05:00 45 2024/10/19 11:16:00 40
powerpc 6 12.0 2024/10/19 08:40:00 51 2024/10/19 12:56:00 67
arm 2 4.0 2024/10/19 09:36:00 32 2024/10/19 10:03:00 32
x86_64 10 20.0 2024/10/19 08:27:00 30 2024/10/19 13:30:00 22
powerpc64 8 16.0 2024/10/19 08:43:00 65 2024/10/19 10:59:00 68
mipsel 1 2.0 2024/10/19 09:59:00 38 2024/10/19 09:59:00 38
aarch64 6 12.0 2024/10/19 08:15:00 27 2024/10/19 09:57:00 26
sparc64 3 6.0 2024/10/19 08:33:00 120 2024/10/19 11:33:00 117
riscv64 1 2.0 2024/10/19 11:10:00 26 2024/10/19 11:10:00 26
loongarch64 2 4.0 2024/10/19 09:45:00 25 2024/10/19 10:17:00 30
linux 34 68.0 2024/10/19 07:29:00 50 2024/10/19 11:38:00 25
go32v2 4 8.0 2024/10/19 08:55:00 60 2024/10/19 11:13:00 63
solaris 5 10.0 2024/10/19 13:22:00 24 2024/10/19 13:30:00 22
aix 7 14.0 2024/10/19 08:40:00 51 2024/10/19 12:56:00 67
3.3.1 28 56.0 2024/10/19 08:05:00 45 2024/10/19 12:56:00 67
3.2.3 22 44.0 2024/10/19 07:29:00 50 2024/10/19 13:30:00 22

Source:

{ Source provided for Free Pascal Bug Report 1269 }
{ Submitted by "Rob Kolstad" on  2000-11-28 }
{ e-mail: kolstad@ace.delos.com }

{$ifdef cpu68k}
  {$define COMP_IS_INT64}
{$endif cpu68k}


var
  A : array [0..25, 0..100] of comp;
  V : array [1..25] of longint;
  vt, nn : longint;
  i, j : longint;

function calc(m : longint; n : longint) : comp;
var i : longint;
begin
   writeln(m,' ',n, ' ', a[m,n]);
   if A[m, n] <> -1 then begin
       calc := A[m, n]
   end else begin
      if n = 0 then begin
         A[m, n] := 1;
         calc := 1;
         exit;
      end;
      A[m, n] := 0;
      for i := m downto 1 do
         if n - V[i] >= 0 then
            A[m, n] := A[m, n] + calc(i, n - V[i]);
      calc := A[m, n];
   end;
end;

begin
  vt := 10;
  nn := 100;
  v[1] := 1; v[2] := 2; v[3] := 3;
  v[4] := 4; v[5] := 5; v[6] := 6;
  v[7] := 7; v[8] := 8; v[9] := 9;
  v[10] := 10;
  for i := 0 to 25 do
    for j := 0 to nn do A[i, j] := -1;
{$ifdef COMP_IS_INT64}
  writeln( calc(vt, nn));
{$else not COMP_IS_INT64}
  writeln( calc(vt, nn) :0:0);
{$endif COMP_IS_INT64}
end.


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