Test suite results for test file tbs/tb0122.pp

Test run data :

Run ID:
Operating system: openbsd
Processor: x86_64
Version: 3.3.1
Fails/OK/Total: 24/8337/8361
Version: 3.3.1
Full version: 3.3.1-r20:48150
Comment: -dFPC_USE_LIBC -gw -O4 -Fd
Machine: gcc220
Category: 1
SVN revisions: 20:48150:1:48121:1:48139:1:48130
Submitter: pierre
Date: 2021/01/13 02:05:00
Previous run: 549895
Next run: 550380

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
-1841169894550150TrueFalseSuccessfully run

Record count: 1

No log of 550150.

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.