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=4 Percentage= 8.00

Skipped=46 Percentage= 92.00

Result type Cat. Count Percentage First date Last Date
Success, compilation failed 4 8.0 2024/10/19 08:55:00 60 2024/10/19 10:27:00 65
i386 4 100.0 2024/10/19 08:55:00 60 2024/10/19 10:27:00 65
linux 2 50.0 2024/10/19 09:40:00 209 2024/10/19 10:08:00 202
go32v2 2 50.0 2024/10/19 08:55:00 60 2024/10/19 10:27:00 65
3.3.1 4 100.0 2024/10/19 08:55:00 60 2024/10/19 10:27:00 65
Skipping test because for other cpu 46 92.0 2024/10/19 07:29:00 50 2024/10/19 13:36:00 24
m68k 2 4.3 2024/10/19 07:29:00 50 2024/10/19 09:50:00 39
sparc 5 10.9 2024/10/19 08:05:00 45 2024/10/19 11:16:00 40
powerpc 5 10.9 2024/10/19 10:03:00 203 2024/10/19 13:26:00 65
arm 1 2.2 2024/10/19 10:03:00 32 2024/10/19 10:03:00 32
x86_64 10 21.7 2024/10/19 08:40:00 45 2024/10/19 13:36:00 24
powerpc64 7 15.2 2024/10/19 08:06:00 59 2024/10/19 11:23:00 69
mips 2 4.3 2024/10/19 09:54:00 35 2024/10/19 10:28:00 38
mipsel 2 4.3 2024/10/19 08:27:00 188 2024/10/19 10:35:00 142
aarch64 6 13.0 2024/10/19 08:15:00 27 2024/10/19 09:57:00 26
sparc64 3 6.5 2024/10/19 09:25:00 118 2024/10/19 11:33:00 117
riscv64 1 2.2 2024/10/19 11:10:00 26 2024/10/19 11:10:00 26
loongarch64 2 4.3 2024/10/19 09:45:00 25 2024/10/19 10:17:00 30
linux 35 76.1 2024/10/19 07:29:00 50 2024/10/19 11:38:00 25
solaris 6 13.0 2024/10/19 13:26:00 25 2024/10/19 13:36:00 24
aix 5 10.9 2024/10/19 10:31:00 61 2024/10/19 13:26:00 65
3.3.1 24 52.2 2024/10/19 08:05:00 45 2024/10/19 13:26:00 65
3.2.3 22 47.8 2024/10/19 07:29:00 50 2024/10/19 13:36:00 24

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.