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

t_id 1231
t_adddate 2004/01/14
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/05/17 23:33:00 28 2024/05/18 01:25:00 24
i386 30 60.0 2024/05/17 23:33:00 28 2024/05/18 01:25:00 24
sparc 3 6.0 2024/05/17 23:36:00 42 2024/05/17 23:52:00 41
x86_64 13 26.0 2024/05/18 00:05:00 29 2024/05/18 01:24:00 26
powerpc64 2 4.0 2024/05/18 01:09:00 101 2024/05/18 01:11:00 108
aarch64 2 4.0 2024/05/18 00:11:00 33 2024/05/18 00:52:00 35
linux 33 66.0 2024/05/17 23:33:00 28 2024/05/18 01:25:00 24
win32 2 4.0 2024/05/17 23:54:00 25 2024/05/18 00:21:00 24
solaris 15 30.0 2024/05/17 23:36:00 42 2024/05/18 00:34:00 30
3.3.1 17 34.0 2024/05/17 23:33:00 28 2024/05/18 01:21:00 20
3.2.3 33 66.0 2024/05/17 23:39:00 24 2024/05/18 01:25:00 24

Source:

{ Source provided for Free Pascal Bug Report 2892 }
{ Submitted by "Eric Grange" on  2004-01-12 }
{ e-mail: egrange@glscene.org }

{$mode delphi}

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

function VectorMake(const v : TAffineVector; w : Single = 0) : TVector; overload;
begin
end;

function VectorMake(const x, y, z: Single; w : Single = 0) : TVector; overload;
begin
end;

var
   avec : TAffineVector;
   vec : TVector;
begin
   vec:=VectorMake(avec);
end.

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