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

t_id 1060
t_cpu i386
t_adddate 2003/10/14
t_result 0
t_knownrunerror 0

Detailed test run results:

Record count: 50

Total = 50

OK=0 Percentage= 0.00

Skipped=50 Percentage= 100.00

Result type Cat. Count Percentage First date Last Date
Skipping test because for other cpu 28 56.0 2024/05/17 23:36:00 42 2024/05/18 01:11:00 0
sparc 12 42.9 2024/05/17 23:36:00 42 2024/05/17 23:55:00 41
x86_64 12 42.9 2024/05/18 00:05:00 29 2024/05/18 00:34:00 30
powerpc64 2 7.1 2024/05/18 01:09:00 101 2024/05/18 01:11:00 0
aarch64 2 7.1 2024/05/18 00:11:00 33 2024/05/18 00:52:00 35
linux 4 14.3 2024/05/18 00:11:00 33 2024/05/18 01:11:00 0
solaris 24 85.7 2024/05/17 23:36:00 42 2024/05/18 00:34:00 30
3.3.1 9 32.1 2024/05/17 23:36:00 42 2024/05/18 01:11:00 0
3.2.3 19 67.9 2024/05/17 23:38:00 38 2024/05/18 00:34:00 30
Skipping test run because it is a unit 22 44.0 2024/05/17 23:33:00 28 2024/05/18 01:12:00 0
i386 22 100.0 2024/05/17 23:33:00 28 2024/05/18 01:12:00 0
linux 17 77.3 2024/05/17 23:33:00 28 2024/05/18 01:12:00 0
win32 3 13.6 2024/05/17 23:41:00 23 2024/05/18 00:21:00 24
solaris 2 9.1 2024/05/17 23:36:00 26 2024/05/17 23:38:00 29
3.3.1 11 50.0 2024/05/17 23:33:00 28 2024/05/18 01:12:00 0
3.2.3 11 50.0 2024/05/17 23:39:00 24 2024/05/18 01:11:00 0

Source:

{ %CPU=i386 }
{ FPC behaves interestingly once encountered virtual method
 declared as
  procedure TWhateverObject.Method1; assembler; asm ... end;
 if you ever try to overload such method _in another unit_,
 than compile _second unit_, and than try to compile it again (???)-
 you will end up with the message "Function header does not match
 forward declaration of TNewObject.Method1" although in reality
 it does match perfectly.
 sometimes i encounter the same message even on non-assembler methods,
 but i have not been able to reproduce them cleanly nor find the
 reason for such behavior.}

 unit tw0555;


 interface
 uses
   uw0555;

 type
   TBugObjChild = Object(TBugObj)
     procedure Method1;
     procedure Method2;virtual;
     procedure Method3;
     procedure Method4;virtual;
    end;

 implementation

  procedure TBugObjChild.Method1;
  begin
  end;

  procedure TBugObjChild.Method2;
  begin
  end;

{$ASMMODE ATT}
  procedure TBugObjChild.Method3;assembler;
  asm
     movl $1,%eax
  end;

  procedure TBugObjChild.Method4;assembler;
  asm
     movl $1,%eax
  end;


end.

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