Test suite results for test file webtbs/tw3190.pp

Test run data :

Run ID:
Operating system: solaris
Processor: sparc
Version: 3.2.3
Fails/OK/Total: 38/7881/7919
Version: 3.2.3
Full version: 3.2.3-1378-ge21af2e126-unpushed
Comment: -O1 -Xn -Fd
Machine: s11-sparc
Category: 1
SVN revisions: e21af2e126:c17a0e20f5:4f3b6199df:d1c29e6cb9
Submitter: pierre
Date: 2024/05/08 23:38:00 <> 2024/05/05
Previous run: 947650
Next run: 949589

Hide skipped tests

Hide successful tests

Test file "webtbs/tw3190.pp" information:

t_id 1315
t_adddate 2004/07/01
t_result 0
t_knownrunerror 0

Detailed test run results:

tr_idruntr_oktr_skiptr_result
525976578948278TrueFalseSuccessfully run

Record count: 1

No log of 948278.

Source:

{ Source provided for Free Pascal Bug Report 3190 }
{ Submitted by "Martin Schreiber" on  2004-06-28 }
{ e-mail:  }
program test;

{$mode delphi}

uses
 TypInfo,Classes;
var
 po1: ptypeinfo;
begin
 po1:= typeinfo(tcomponent);   //compile error: 'Illegal parameter list'
 if po1 <> nil then begin      //compiles on kylix, result: 'TComponent'
  writeln(po1^.name);
 end
 else begin
  writeln('typeinfo(tcomponent) = nil');
 end;
 po1:= typeinfo(tobject);      //compile error: 'Illegal parameter list'
 if po1 <> nil then begin      //compiles on kylix, result: 'TObject'
  writeln(po1^.name);
 end
 else begin
  writeln('typeinfo(tobject) = nil');
 end;
end.

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