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

t_id 454
t_adddate 2003/10/03
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/06/02 01:33:00 35 2024/06/02 02:35:00 0
i386 15 30.0 2024/06/02 01:33:00 35 2024/06/02 02:34:00 0
sparc 1 2.0 2024/06/02 02:33:00 0 2024/06/02 02:33:00 0
x86_64 32 64.0 2024/06/02 01:34:00 16 2024/06/02 02:35:00 0
aarch64 2 4.0 2024/06/02 02:17:00 38 2024/06/02 02:19:00 41
linux 49 98.0 2024/06/02 01:33:00 35 2024/06/02 02:35:00 0
solaris 1 2.0 2024/06/02 02:33:00 0 2024/06/02 02:33:00 0
3.3.1 28 56.0 2024/06/02 01:33:00 35 2024/06/02 02:35:00 0
3.2.3 22 44.0 2024/06/02 01:38:00 27 2024/06/02 02:34:00 0

Source:

{ Old file: tbs0260.pp }
{ problem with VMT generation if non virtual method has a virtual overload                        OK 0.99.12 (PM) }

program test;

  type
      obj1 = object
        st : string;
      constructor init;
      procedure writeit;
      end;

      obj2 = object(obj1)
      procedure writeit;virtual;
      end;

      obj3 = object(obj2)
        l : longint;
      end;

      constructor obj1.init;
        begin
        end;

      procedure obj1.writeit;
        begin
        end;

      procedure obj2.writeit;
        begin
        end;


begin
end.

Link to SVN view of tbs/tb0221.pp source.