Test suite results for test file tbs/tb0122.pp

Test run data :

Run ID:
Operating system: solaris
Processor: i386
Version: 3.2.3
Fails/OK/Total: 33/8251/8284
Version: 3.2.3
Full version: 3.2.3-1373-gae0fe8a
Comment: -Agas -Cg -Fd
Machine: unstable10x
Category: 1
SVN revisions: fdf93c5:c17a0e2:ae0fe8a:d1c29e6
Submitter: pierre
Date: 2024/04/27 17:05:00
Previous run: 928817
Next run: 941248

Hide skipped tests

Hide successful tests

Test file "tbs/tb0122.pp" information:

t_id 367
t_adddate 2003/10/03
t_result 0
t_knownrunerror 0
t_opts -S2

Detailed test run results:

tr_idruntr_oktr_skiptr_result
477985229940510TrueFalseSuccessfully run

Record count: 1

No log of 940510.

Source:

{ %OPT= -S2 }

{ Old file: tbs0141.pp }
{ Wrong Class sizes when using forwardly defined classes. OK 0.99.6 }

program bug;

{ uses objpas; not with -S2 !! }
type
   //
   TObjectAB = class;
   TObjectABCD = class;
   TObjectABCDEF = class;
   // }
   TObjectAB = class(tobject)
      a, b: integer;
   end ;
   TObjectABCD = class(TObjectAB)
      c, d: integer;
   end ;
   TObjectABCDEF = class(TObjectABCD)
      e, f: integer;
   end ;

var
   a, b, c: TObject;

begin
a := TObjectAB.Create;
WriteLn(a.InstanceSize, '  Should be: 12');
if a.InstanceSize + SizeOf(integer)*2 <> TObjectABCD.InstanceSize then
  Halt(1);
b := TObjectABCD.Create;
if b.InstanceSize + SizeOf(integer)*2 <> TObjectABCDEF.InstanceSize then
  Halt(1);
WriteLn(b.InstanceSize, '  Should be: 20');
c := TObjectABCDEF.Create;
WriteLn(c.InstanceSize, '  Should be: 28');
end.

{
Here are the VMT tables from the assembler file:

.globl VMT_TD$_TOBJECTAB
VMT_TD$_TOBJECTAB:
 .long 12,-12
 .long VMT_OBJPAS$_TOBJECT
 .long _OBJPAS$$_$$_TOBJECT_DESTROY
 .long _OBJPAS$$_$$_TOBJECT_NEWINSTANCE
 .long _OBJPAS$$_$$_TOBJECT_FREEINSTANCE
 .long _OBJPAS$$_$$_TOBJECT_SAFECALLEXCEPTION$TOBJECT$POINTER
 .long _OBJPAS$$_$$_TOBJECT_DEFAULTHANDLER$$$$
.globl VMT_TD$_TOBJECTABCD
VMT_TD$_TOBJECTABCD:
 .long 12,-12
 .long VMT_TD$_TOBJECTAB
 .long _OBJPAS$$_$$_TOBJECT_DESTROY
 .long _OBJPAS$$_$$_TOBJECT_NEWINSTANCE
 .long _OBJPAS$$_$$_TOBJECT_FREEINSTANCE
 .long _OBJPAS$$_$$_TOBJECT_SAFECALLEXCEPTION$TOBJECT$POINTER
 .long _OBJPAS$$_$$_TOBJECT_DEFAULTHANDLER$$$$
.globl VMT_TD$_TOBJECTABCDEF
VMT_TD$_TOBJECTABCDEF:
 .long 12,-12
 .long VMT_TD$_TOBJECTABCD
 .long _OBJPAS$$_$$_TOBJECT_DESTROY
 .long _OBJPAS$$_$$_TOBJECT_NEWINSTANCE
 .long _OBJPAS$$_$$_TOBJECT_FREEINSTANCE
 .long _OBJPAS$$_$$_TOBJECT_SAFECALLEXCEPTION$TOBJECT$POINTER
 .long _OBJPAS$$_$$_TOBJECT_DEFAULTHANDLER$$$$
}

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