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

t_id 1010
t_adddate 2003/10/08
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/21 00:50:00 26 2024/05/21 01:39:00 26
i386 39 78.0 2024/05/21 00:50:00 26 2024/05/21 01:39:00 26
x86_64 9 18.0 2024/05/21 01:21:00 14 2024/05/21 01:38:00 27
powerpc64 1 2.0 2024/05/21 01:11:00 108 2024/05/21 01:11:00 108
aarch64 1 2.0 2024/05/21 01:29:00 35 2024/05/21 01:29:00 35
linux 50 100.0 2024/05/21 00:50:00 26 2024/05/21 01:39:00 26
3.3.1 27 54.0 2024/05/21 01:09:00 28 2024/05/21 01:38:00 28
3.2.3 23 46.0 2024/05/21 00:50:00 26 2024/05/21 01:39:00 26

Source:

{ Source provided for Free Pascal Bug Report 2721 }
{ Submitted by "marcov" on  2003-10-07 }
{ e-mail:  }
{$mode Delphi}

type
  TIntfPersistent = class
  public
    function _Release: Integer; virtual; cdecl;
    end;

  t2 = class(Tintfpersistent)
    public
     function _Release: Integer; override;
    end;

function TIntfPersistent._Release: Integer; 
begin
end;

function t2._Release: Integer;
begin
end;


begin
end.

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