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

t_id 1471
t_adddate 2005/01/31
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 05:08:00 158 2024/05/21 07:52:00 74
i386 4 8.0 2024/05/21 06:26:00 59 2024/05/21 07:25:00 42
m68k 3 6.0 2024/05/21 06:59:00 58 2024/05/21 07:39:00 58
sparc 4 8.0 2024/05/21 06:46:00 68 2024/05/21 07:52:00 74
powerpc 9 18.0 2024/05/21 06:28:00 52 2024/05/21 07:24:00 181
arm 3 6.0 2024/05/21 06:43:00 210 2024/05/21 07:18:00 40
x86_64 2 4.0 2024/05/21 06:12:00 30 2024/05/21 06:21:00 29
powerpc64 5 10.0 2024/05/21 05:53:00 132 2024/05/21 07:32:00 77
mips 3 6.0 2024/05/21 07:08:00 154 2024/05/21 07:46:00 54
mipsel 3 6.0 2024/05/21 06:07:00 151 2024/05/21 07:17:00 228
aarch64 8 16.0 2024/05/21 06:35:00 23 2024/05/21 07:39:00 37
sparc64 3 6.0 2024/05/21 05:08:00 158 2024/05/21 07:17:00 165
riscv64 1 2.0 2024/05/21 07:46:00 31 2024/05/21 07:46:00 31
loongarch64 2 4.0 2024/05/21 07:01:00 34 2024/05/21 07:33:00 38
linux 43 86.0 2024/05/21 05:08:00 158 2024/05/21 07:52:00 74
go32v2 1 2.0 2024/05/21 06:26:00 59 2024/05/21 06:26:00 59
solaris 2 4.0 2024/05/21 06:12:00 30 2024/05/21 06:21:00 29
darwin 4 8.0 2024/05/21 06:35:00 23 2024/05/21 07:04:00 38
3.3.1 29 58.0 2024/05/21 05:08:00 158 2024/05/21 07:52:00 74
3.2.3 21 42.0 2024/05/21 06:07:00 151 2024/05/21 07:50:00 62

Source:

{ Source provided for Free Pascal Bug Report 3489 }
{ Submitted by "Danny Milosavljevic" on  2004-12-28 }
{ e-mail: danny_milo@yahoo.com }
program itest;

{$mode delphi}

var
  err : boolean;
  
type
  IGtkObject = interface
    ['{C4741871-56EB-4A5C-BDC8-018992345B24}']
    procedure Destroy1();
  end;
  IGtkWidget = interface(IGtkObject)
    ['{210BF9BD-232D-43D5-9ECA-94B8AB2734E5}']

     procedure Destroy1();
     procedure Show();
     procedure Hide();
  end;

  DGtkObject = class(TInterfacedObject, IGtkObject, IInterface)
  public
     procedure Destroy1();
  end;

  DGtkWidget = class(DGtkObject, IGtkWidget, IGtkObject, IInterface)
  public
    constructor CreateWrapped(a:Pointer);
     procedure Destroy1();
     procedure Show();
     procedure Hide();
  end;

procedure DGtkObject.Destroy1();
begin
end;

constructor DGtkWidget.CreateWrapped(a:Pointer);
begin
end;

procedure DGtkWidget.Destroy1();
begin
end;

procedure DGtkWidget.Show();
begin
  Writeln('Show');
  err:=false;
end;

procedure DGtkWidget.Hide();
begin
  Writeln('Hide');
end;

var
  w: IGtkWidget;
begin
  err:=true;
  w := DGtkWidget.CreateWrapped(nil);
  w.Show();
  if err then
    halt(1);
end.

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