Test suite results for test file webtbf/tw1633.pp

Test run data :

Run ID:
Operating system: linux
Processor: i386
Version: 3.2.3
Fails/OK/Total: 31/8322/8353
Version: 3.2.3
Full version: 3.2.3-1376-gbff5cbd342
Comment: -gl -Fl/lib32 -Fl/usr/lib32 -Fl/usr/lib/gcc/x86_64-linux-gnu/11/32 -Fl/usr/lib/i386-linux-gnu -Fl/home/pierre/sys-root/i386-linux/lib -Fl/home/pierre/sys-root/i386-linux/usr/lib -O2 -Fd
Machine: gcclocal
Category: 1
SVN revisions: bff5cbd342:c17a0e20f5:4f3b6199df:d1c29e6cb9
Submitter: pierre
Date: 2024/05/08 23:39:00 <> 2024/05/04
Previous run: 947614
Next run: 948930

Hide skipped tests

Hide successful 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:

tr_idruntr_oktr_skiptr_result
525979897948276TrueFalseSuccess, compilation failed

Record count: 1

No log of 948276.

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.