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

t_id 1357
t_adddate 2004/09/13
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/17 12:06:00 45 2024/05/17 23:31:00 40
i386 11 22.0 2024/05/17 12:06:00 45 2024/05/17 23:31:00 27
sparc 6 12.0 2024/05/17 23:24:00 38 2024/05/17 23:31:00 40
powerpc 1 2.0 2024/05/17 21:13:00 42 2024/05/17 21:13:00 42
x86_64 14 28.0 2024/05/17 12:20:00 29 2024/05/17 14:42:00 39
powerpc64 13 26.0 2024/05/17 20:12:00 105 2024/05/17 20:54:00 132
aarch64 4 8.0 2024/05/17 12:15:00 38 2024/05/17 16:28:00 32
sparc64 1 2.0 2024/05/17 12:19:00 173 2024/05/17 12:19:00 173
linux 28 56.0 2024/05/17 12:15:00 38 2024/05/17 21:13:00 42
win32 4 8.0 2024/05/17 22:07:00 21 2024/05/17 23:27:00 24
solaris 13 26.0 2024/05/17 12:06:00 45 2024/05/17 23:31:00 40
darwin 3 6.0 2024/05/17 16:15:00 32 2024/05/17 16:28:00 32
win64 2 4.0 2024/05/17 13:34:00 47 2024/05/17 14:42:00 39
3.3.1 38 76.0 2024/05/17 12:19:00 173 2024/05/17 23:31:00 40
3.2.2 2 4.0 2024/05/17 12:06:00 45 2024/05/17 12:24:00 45
3.2.3 10 20.0 2024/05/17 12:15:00 38 2024/05/17 23:30:00 38

Source:

{ Source provided for Free Pascal Bug Report 3292 }
{ Submitted by "Vincent Snijdes" on  2004-09-03 }
{ e-mail: vslist@zonnet.nl }
program bug3292;

{$ifdef fpc}{$mode objfpc}{$H+}{$endif}

uses
  Classes, uw3292a;

type
  TDerived = class(TMiddle)
  private
    procedure a(var m); message 1;
    procedure b; override;
  end;

{ TDerived }

procedure TDerived.a(var m);
begin
  writeln('A; In TDerived');
  inc(acnt);
  inherited a(m);
end;

procedure TDerived.b;
begin
  writeln('B: In TDerived');
  inc(bcnt);
  inherited b;
end;

var
  o: TDerived;
  m: longint;

begin
  o := TDerived.Create;
  acnt:=0;
  bcnt:=0;
  o.a(m);
  o.b;
  if acnt<>2 then
    halt(1);
  if bcnt<>2 then
    halt(1);
end.

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