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

t_id 1298
t_adddate 2004/05/24
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/06/02 01:36:00 47 2024/06/02 06:03:00 0
i386 7 14.0 2024/06/02 01:36:00 47 2024/06/02 05:03:00 0
m68k 1 2.0 2024/06/02 03:55:00 53 2024/06/02 03:55:00 53
sparc 5 10.0 2024/06/02 03:07:00 41 2024/06/02 04:45:00 56
powerpc 1 2.0 2024/06/02 04:10:00 238 2024/06/02 04:10:00 238
x86_64 24 48.0 2024/06/02 01:57:00 22 2024/06/02 06:03:00 0
powerpc64 4 8.0 2024/06/02 04:15:00 53 2024/06/02 04:32:00 57
mips 1 2.0 2024/06/02 04:00:00 47 2024/06/02 04:00:00 47
mipsel 1 2.0 2024/06/02 04:06:00 185 2024/06/02 04:06:00 185
aarch64 4 8.0 2024/06/02 01:46:00 39 2024/06/02 04:26:00 35
sparc64 1 2.0 2024/06/02 05:03:00 0 2024/06/02 05:03:00 0
riscv64 1 2.0 2024/06/02 04:39:00 31 2024/06/02 04:39:00 31
linux 40 80.0 2024/06/02 01:36:00 47 2024/06/02 05:03:00 0
go32v2 3 6.0 2024/06/02 03:45:00 54 2024/06/02 05:03:00 0
solaris 7 14.0 2024/06/02 03:07:00 41 2024/06/02 06:03:00 0
3.3.1 28 56.0 2024/06/02 01:46:00 39 2024/06/02 06:03:00 0
3.2.3 22 44.0 2024/06/02 01:36:00 47 2024/06/02 05:03:00 0

Source:

{ Source provided for Free Pascal Bug Report 3113 }
{ Submitted by "Michalis Kamburelis" on  2004-05-23 }
{ e-mail: michalis@camelot.homedns.org }
type
  TVector3 = array[0..2]of Integer;

procedure P(const A:array of TVector3);
var i:Integer;
begin
 Writeln(High(A));

 if High(A)<>1 then
   begin
     writeln('Error!');
     halt(1);
   end;

 for i:=0 to High(A) do
  Writeln('  ', A[i][0], ' ', A[i][1], ' ', A[i][2]);
end;

const A1:TVector3 = (1, 2, 3);
begin
 P(A1);
 { When changed to P([A1]), works OK. }
end.

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