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

t_id 3
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/06/02 01:33:00 35 2024/06/02 02:35:00 0
i386 15 30.0 2024/06/02 01:33:00 35 2024/06/02 02:34:00 0
sparc 1 2.0 2024/06/02 02:33:00 0 2024/06/02 02:33:00 0
x86_64 32 64.0 2024/06/02 01:34:00 16 2024/06/02 02:35:00 0
aarch64 2 4.0 2024/06/02 02:17:00 38 2024/06/02 02:19:00 41
linux 49 98.0 2024/06/02 01:33:00 35 2024/06/02 02:35:00 0
solaris 1 2.0 2024/06/02 02:33:00 0 2024/06/02 02:33:00 0
3.3.1 28 56.0 2024/06/02 01:33:00 35 2024/06/02 02:35:00 0
3.2.3 22 44.0 2024/06/02 01:38:00 27 2024/06/02 02:34:00 0

Source:

{$mode objfpc}
type
   tc1 = class
   end;

   tc2 = class(tc1)
   end;

   tcoc1 = class of tc1;
   tcoc2 = class of tc2;

procedure p(const a : array of tcoc1);

  begin
  end;

begin
   p([tc2]);
end.

Link to SVN view of test/tarray1.pp source.