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

t_id 428
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/06/02 01:33:00 35 2024/06/02 02:38:00 0
i386 16 32.0 2024/06/02 01:33:00 35 2024/06/02 02:36:00 0
sparc 1 2.0 2024/06/02 02:33:00 41 2024/06/02 02:33:00 41
x86_64 30 60.0 2024/06/02 01:34:00 16 2024/06/02 02:38:00 0
aarch64 3 6.0 2024/06/02 02:17:00 38 2024/06/02 02:36:00 0
linux 49 98.0 2024/06/02 01:33:00 35 2024/06/02 02:38:00 0
solaris 1 2.0 2024/06/02 02:33:00 41 2024/06/02 02:33:00 41
3.3.1 28 56.0 2024/06/02 01:33:00 35 2024/06/02 02:38:00 0
3.2.3 22 44.0 2024/06/02 01:38:00 27 2024/06/02 02:38:00 0

Source:

{ Old file: tbs0227.pp }
{ external var does strange things when declared in localsymtable OK 0.99.11 (PFV) }

function getheapsize:longint;assembler;
var
  heapsize : longint;external name 'HEAPSIZE';
//  sbrk : longint;external name '___sbrk';
asm
{$ifdef CPUI386}
        movl    HEAPSIZE,%eax
end ['EAX'];
{$endif CPUI386}
{$ifdef CPU68K}
        move.l    HEAPSIZE,d0
end ['D0'];
{$endif CPU68K}


begin
  writeln(getheapsize);
end.

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