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

t_id 608
t_version 1.1
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/05/18 01:10:00 32 2024/05/18 01:48:00 0
i386 35 70.0 2024/05/18 01:10:00 32 2024/05/18 01:48:00 0
x86_64 12 24.0 2024/05/18 01:24:00 26 2024/05/18 01:47:00 0
aarch64 3 6.0 2024/05/18 01:29:00 34 2024/05/18 01:46:00 37
linux 49 98.0 2024/05/18 01:10:00 32 2024/05/18 01:48:00 0
go32v2 1 2.0 2024/05/18 01:45:00 54 2024/05/18 01:45:00 54
3.3.1 27 54.0 2024/05/18 01:19:00 28 2024/05/18 01:48:00 0
3.2.3 23 46.0 2024/05/18 01:10:00 32 2024/05/18 01:46:00 26

Source:

{ %version=1.1 }

{$ifdef fpc}{$mode objfpc}{$endif}
uses ub0391;

type
  tc1 = class
    procedure p1(l:longint);
    procedure p2;
  end;

procedure tc1.p1(l:longint);
begin
  writeln('longint: ',l);
end;


procedure tc1.p2;
var
  c2 : tc2;
begin
  c2:=tc2.create;
  { the next code should take tc1.p1(longint) as the tc2.p1 can not
    be seen from here! }
  with c2 do
   p1(100);
  c2.free;
end;


var
  c1 : tc1;
begin
  c1:=tc1.create;
  c1.p2;
  c1.free;
end.

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