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

t_id 1225
t_version 1.1
t_adddate 2004/01/07
t_result 0
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 test run because it is a unit 50 100.0 2024/05/08 02:25:00 20 2024/05/08 03:31:00 0
i386 10 20.0 2024/05/08 02:34:00 26 2024/05/08 03:25:00 27
sparc 1 2.0 2024/05/08 03:19:00 46 2024/05/08 03:19:00 46
x86_64 35 70.0 2024/05/08 02:25:00 20 2024/05/08 03:31:00 0
powerpc64 2 4.0 2024/05/08 03:06:00 56 2024/05/08 03:15:00 57
aarch64 2 4.0 2024/05/08 03:06:00 37 2024/05/08 03:27:00 38
linux 47 94.0 2024/05/08 02:25:00 20 2024/05/08 03:31:00 0
go32v2 1 2.0 2024/05/08 03:07:00 55 2024/05/08 03:07:00 55
solaris 1 2.0 2024/05/08 03:19:00 46 2024/05/08 03:19:00 46
win64 1 2.0 2024/05/08 03:29:00 0 2024/05/08 03:29:00 0
3.3.1 16 32.0 2024/05/08 02:25:00 20 2024/05/08 03:31:00 0
3.2.3 34 68.0 2024/05/08 02:28:00 35 2024/05/08 03:29:00 26

Source:

{ %version=1.1 }
{$mode objfpc}
{ Source provided for Free Pascal Bug Report 2865 }
{ Submitted by "Eric Grange" on  2003-12-30 }
{ e-mail: egrange@glscene.org }
unit tw2865;

interface

uses Classes;

type
   TVector = array [0..3] of Single;

   TGLUpdateAbleObject = class (TPersistent)
   end;

   TGLCoordinates = class (TGLUpdateAbleObject)
      private
	 { Private Declarations }
         FCoords : TVector;

      published
         { Published Declarations }
         property X : Single index 0 read FCoords[0];
   end;

implementation

end.

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