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

t_id 1556
t_adddate 2005/04/18
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 16:15:00 32 2024/05/17 23:49:00 41
i386 18 36.0 2024/05/17 22:07:00 21 2024/05/17 23:46:00 27
sparc 17 34.0 2024/05/17 23:24:00 38 2024/05/17 23:49:00 41
powerpc 1 2.0 2024/05/17 21:13:00 42 2024/05/17 21:13:00 42
powerpc64 13 26.0 2024/05/17 20:12:00 105 2024/05/17 20:54:00 132
aarch64 1 2.0 2024/05/17 16:15:00 32 2024/05/17 16:15:00 32
linux 15 30.0 2024/05/17 20:12:00 105 2024/05/17 23:46:00 27
win32 5 10.0 2024/05/17 22:07:00 21 2024/05/17 23:41:00 23
solaris 29 58.0 2024/05/17 23:23:00 25 2024/05/17 23:49:00 41
darwin 1 2.0 2024/05/17 16:15:00 32 2024/05/17 16:15:00 32
3.3.1 40 80.0 2024/05/17 20:12:00 105 2024/05/17 23:46:00 27
3.2.3 10 20.0 2024/05/17 16:15:00 32 2024/05/17 23:49:00 41

Source:

{ Source provided for Free Pascal Bug Report 3893 }
{ Submitted by "George Bakhtadze" on  2005-04-14 }
{ e-mail: mirage@avagames.net }
program test;

function GetPropertyValue: Pointer;
begin
end;

var
  Size, Size2: Single;
  d: Integer;
  p: Pointer;

begin
  Size := 9.11;
//  d := Integer(GetPropertyValue());   // All commented code works
//  p := GetPropertyValue();
//  Size2 := single(p);
  Size2 := single(GetPropertyValue());
end.

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