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

t_id 1511
t_adddate 2005/03/06
t_result 0
t_knownrunerror 0
t_opts -gh

Detailed test run results:

Record count: 50

Total = 50

OK=46 Percentage= 92.00

Result type Cat. Count Percentage First date Last Date
Failed to run 4 8.0 2024/10/19 10:03:00 203 2024/10/19 11:33:00 117
powerpc 2 50.0 2024/10/19 10:03:00 203 2024/10/19 10:40:00 193
sparc64 2 50.0 2024/10/19 10:46:00 141 2024/10/19 11:33:00 117
linux 4 100.0 2024/10/19 10:03:00 203 2024/10/19 11:33:00 117
3.3.1 4 100.0 2024/10/19 10:03:00 203 2024/10/19 11:33:00 117
Successfully run 46 92.0 2024/10/19 07:29:00 50 2024/10/19 13:36:00 24
i386 4 8.7 2024/10/19 08:55:00 60 2024/10/19 11:13:00 63
m68k 3 6.5 2024/10/19 07:29:00 50 2024/10/19 10:22:00 40
sparc 2 4.3 2024/10/19 10:30:00 43 2024/10/19 11:16:00 40
powerpc 3 6.5 2024/10/19 09:08:00 50 2024/10/19 13:26:00 65
arm 2 4.3 2024/10/19 09:36:00 32 2024/10/19 10:03:00 32
x86_64 10 21.7 2024/10/19 08:27:00 30 2024/10/19 13:36:00 24
powerpc64 8 17.4 2024/10/19 08:51:00 46 2024/10/19 11:23:00 69
mips 2 4.3 2024/10/19 09:54:00 35 2024/10/19 10:28:00 38
mipsel 2 4.3 2024/10/19 09:59:00 38 2024/10/19 10:35:00 142
aarch64 5 10.9 2024/10/19 08:15:00 27 2024/10/19 09:57:00 26
sparc64 1 2.2 2024/10/19 09:25:00 118 2024/10/19 09:25:00 118
riscv64 2 4.3 2024/10/19 10:25:00 33 2024/10/19 11:10:00 26
loongarch64 2 4.3 2024/10/19 09:45:00 25 2024/10/19 10:17:00 30
linux 30 65.2 2024/10/19 07:29:00 50 2024/10/19 11:38:00 25
go32v2 4 8.7 2024/10/19 08:55:00 60 2024/10/19 11:13:00 63
solaris 6 13.0 2024/10/19 13:26:00 25 2024/10/19 13:36:00 24
aix 6 13.0 2024/10/19 09:08:00 50 2024/10/19 13:26:00 65
3.3.1 29 63.0 2024/10/19 08:27:00 30 2024/10/19 13:26:00 65
3.2.3 17 37.0 2024/10/19 07:29:00 50 2024/10/19 13:36:00 24

Source:

{ %OPT=-gh }
{ Source provided for Free Pascal Bug Report 3742 }
{ Submitted by "Martin Schreiber" on  2005-03-04 }
{ e-mail:  }
program project1;

{$mode objfpc}{$H+}
//compile with -glh

uses
  Classes;

type
 integerarty = array of integer;
 scopestackcachety = record
  startscope: integer;
  stack: integerarty;
 end;

 scopestackcachearty = array of scopestackcachety;

var
 ar2: scopestackcachearty;

procedure testproc;

var
 ar1: integerarty;

begin
 setlength(ar1,2);
 setlength(ar2,2);
 ar2[0].stack:= copy(ar1,0,1);
 ar2[1].stack:= copy(ar1,0,1);
 writeln('refcount a 0: ',pinteger(pchar(pointer(ar2[0].stack)-8))^);
 writeln('refcount a 1: ',pinteger(pchar(pointer(ar2[1].stack)-8))^);
end;

begin
 testproc;
 writeln('refcount b 0: ',pinteger(pchar(pointer(ar2[0].stack)-8))^);
 writeln('refcount b 1: ',pinteger(pchar(pointer(ar2[1].stack)-8))^);
 finalize(ar2);
end.

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