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

t_id 1095
t_adddate 2003/10/14
t_result 0
Flag t_fail set
t_knownrunerror 0

Detailed test run results:

Record count: 50

Total = 50

OK=5 Percentage= 10.00

Skipped=45 Percentage= 90.00

Result type Cat. Count Percentage First date Last Date
Success, compilation failed 5 10.0 2024/05/08 06:01:00 28 2024/05/08 10:33:00 43
i386 5 100.0 2024/05/08 06:01:00 28 2024/05/08 10:33:00 43
linux 1 20.0 2024/05/08 10:33:00 43 2024/05/08 10:33:00 43
win32 3 60.0 2024/05/08 06:01:00 28 2024/05/08 08:47:00 26
go32v2 1 20.0 2024/05/08 08:54:00 78 2024/05/08 08:54:00 78
3.3.1 1 20.0 2024/05/08 08:54:00 78 2024/05/08 08:54:00 78
3.2.3 4 80.0 2024/05/08 06:01:00 28 2024/05/08 10:33:00 43
Skipping test because for other cpu 45 90.0 2024/05/08 04:00:00 29 2024/05/08 10:32:00 27
sparc 2 4.4 2024/05/08 07:48:00 57 2024/05/08 09:37:00 69
powerpc 3 6.7 2024/05/08 08:32:00 63 2024/05/08 08:55:00 62
arm 2 4.4 2024/05/08 08:11:00 34 2024/05/08 10:23:00 59
x86_64 9 20.0 2024/05/08 04:00:00 29 2024/05/08 10:32:00 27
powerpc64 19 42.2 2024/05/08 08:59:00 57 2024/05/08 10:28:00 96
mips 1 2.2 2024/05/08 08:39:00 43 2024/05/08 08:39:00 43
mipsel 1 2.2 2024/05/08 08:47:00 41 2024/05/08 08:47:00 41
aarch64 6 13.3 2024/05/08 08:56:00 37 2024/05/08 10:21:00 38
sparc64 1 2.2 2024/05/08 10:00:00 183 2024/05/08 10:00:00 183
riscv64 1 2.2 2024/05/08 09:30:00 32 2024/05/08 09:30:00 32
linux 40 88.9 2024/05/08 04:00:00 29 2024/05/08 10:32:00 27
solaris 1 2.2 2024/05/08 07:48:00 57 2024/05/08 07:48:00 57
aix 4 8.9 2024/05/08 08:32:00 63 2024/05/08 10:16:00 82
3.3.1 11 24.4 2024/05/08 04:00:00 29 2024/05/08 10:00:00 183
3.2.3 34 75.6 2024/05/08 08:32:00 63 2024/05/08 10:32:00 27

Source:

{ %fail }

{$ifdef fpc}
  {$mode delphi}
  {$asmmode intel}
{$endif}

type tscreen = class
      x : Cardinal;
      end;
type ttestobj = class
   screen : tscreen;
   constructor create;
   function testasmcall : tscreen;
end;

var
  testobj : ttestobj;

constructor ttestobj.create;
begin
  asm
  mov screen.x,0
  end;
end;

function ttestobj.testasmcall : tscreen;
begin
asm
mov screen.x, 0
ADD screen.x, 1
end;
result := screen;
end;


begin
testobj := ttestobj.create;
testobj.testasmcall;
testobj.destroy;
end.

Link to SVN view of webtbf/tw1633.pp source.