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

t_id 527
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/21 02:33:00 24 2024/05/21 06:38:00 212
i386 4 8.0 2024/05/21 03:08:00 33 2024/05/21 06:01:00 28
m68k 2 4.0 2024/05/21 05:47:00 63 2024/05/21 06:07:00 190
powerpc 8 16.0 2024/05/21 06:13:00 42 2024/05/21 06:36:00 43
arm 2 4.0 2024/05/21 05:29:00 69 2024/05/21 05:53:00 67
x86_64 15 30.0 2024/05/21 02:33:00 24 2024/05/21 06:23:00 27
powerpc64 5 10.0 2024/05/21 05:39:00 106 2024/05/21 06:38:00 212
mips 3 6.0 2024/05/21 04:05:00 47 2024/05/21 06:16:00 240
mipsel 1 2.0 2024/05/21 06:23:00 148 2024/05/21 06:23:00 148
aarch64 10 20.0 2024/05/21 05:20:00 46 2024/05/21 06:36:00 32
linux 30 60.0 2024/05/21 02:33:00 24 2024/05/21 06:38:00 212
win32 1 2.0 2024/05/21 06:01:00 28 2024/05/21 06:01:00 28
go32v2 1 2.0 2024/05/21 05:41:00 55 2024/05/21 05:41:00 55
solaris 10 20.0 2024/05/21 05:55:00 29 2024/05/21 06:19:00 29
darwin 8 16.0 2024/05/21 05:42:00 24 2024/05/21 06:35:00 23
3.3.1 20 40.0 2024/05/21 02:33:00 24 2024/05/21 06:36:00 43
3.2.3 30 60.0 2024/05/21 03:08:00 33 2024/05/21 06:38:00 212

Source:

{$mode objfpc}

type
   tobject2 = class
      constructor create;
      function rname : string;
      procedure wname(const s : string);
      property name : string read rname write wname;
   end;

   tclass2 = class of tobject2;

var
   o2 : tobject2;
   c2 : tclass2;

constructor tobject2.create;

  begin
     inherited create;
  end;

procedure tobject2.wname(const s : string);

  begin
  end;

function tobject2.rname : string;

  begin
  end;

begin
   o2:=tobject2.create;
   o2.name:='1234';
   writeln(o2.name);
   o2.destroy;
   c2:=tobject2;
   o2:=c2.create;
   o2.destroy;
end.

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