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

t_id 1068
t_adddate 2003/10/14
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/08 01:46:00 67 2024/05/08 02:22:00 17
i386 32 64.0 2024/05/08 01:47:00 31 2024/05/08 02:21:00 34
sparc 1 2.0 2024/05/08 01:58:00 39 2024/05/08 01:58:00 39
x86_64 10 20.0 2024/05/08 01:48:00 14 2024/05/08 02:22:00 17
powerpc64 3 6.0 2024/05/08 01:46:00 67 2024/05/08 02:14:00 54
aarch64 4 8.0 2024/05/08 02:00:00 33 2024/05/08 02:19:00 42
linux 48 96.0 2024/05/08 01:46:00 67 2024/05/08 02:22:00 17
win32 1 2.0 2024/05/08 02:04:00 34 2024/05/08 02:04:00 34
solaris 1 2.0 2024/05/08 01:58:00 39 2024/05/08 01:58:00 39
3.3.1 29 58.0 2024/05/08 01:46:00 67 2024/05/08 02:22:00 17
3.2.3 21 42.0 2024/05/08 01:48:00 32 2024/05/08 02:21:00 34

Source:

{ Source provided for Free Pascal Bug Report 2045 }
{ Submitted by "Eero Tanskanen" on  2002-07-16 }
{ e-mail: yendor@nic.fi }
Unit tw2045;
Interface

  Type

    TCoords = Object

      X, Y, Z: Real;

    End;

    PEmpty = ^TEmpty;
    TEmpty = Object

    End;

    PBugger = ^TBugger;
    TBugger = Object

      A : TCoords;
      B : TCoords;
      C : TCoords;

      Empty : PEmpty;

      Function DoInternalError : PBugger;

    End;

Implementation

  Function CallForBug(A, B, C, D, E, F, G, H, I : Real) : PEmpty;
  Begin

  End;

  Function TBugger.DoInternalError : PBugger;
  Var
    TempEmpty : PEmpty;
  Begin

    DoInternalError := Nil;

    TEmpEmpty := CallForBug(DoInternalError^.A.X, DoInternalError^.A.Y, DoInternalError^.A.Z,
      DoInternalError^.B.X, DoInternalError^.B.Y, DoInternalError^.B.Z,
        DoInternalError^.C.X, DoInternalError^.C.Y,  DoInternalError^.C.Z);

  End;


Begin
End.

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