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

t_id 1246
t_adddate 2004/02/10
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 run because it is a unit 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 2942 }
{ Submitted by "Marco (Gory Bugs Department)" on  2004-02-06 }
{ e-mail:  }
unit tw2942b;

interface
{$mode Delphi}

Uses tw2942a;
type
  TIdStackWindows = class(TIdStack)
  public
    constructor Create; override;
    destructor Destroy; override;
     end;

implementation

constructor TIdStackWindows.Create;
begin
  inherited destroy;
end;

destructor TIdStackWindows.Destroy;
begin
  inherited Destroy;
end;
end.

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