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

t_id 419
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/05/17 12:06:00 45 2024/05/17 23:31:00 40
i386 11 22.0 2024/05/17 12:06:00 45 2024/05/17 23:31:00 27
sparc 6 12.0 2024/05/17 23:24:00 38 2024/05/17 23:31:00 40
powerpc 1 2.0 2024/05/17 21:13:00 42 2024/05/17 21:13:00 42
x86_64 14 28.0 2024/05/17 12:20:00 29 2024/05/17 14:42:00 39
powerpc64 13 26.0 2024/05/17 20:12:00 105 2024/05/17 20:54:00 132
aarch64 4 8.0 2024/05/17 12:15:00 38 2024/05/17 16:28:00 32
sparc64 1 2.0 2024/05/17 12:19:00 173 2024/05/17 12:19:00 173
linux 28 56.0 2024/05/17 12:15:00 38 2024/05/17 21:13:00 42
win32 4 8.0 2024/05/17 22:07:00 21 2024/05/17 23:27:00 24
solaris 13 26.0 2024/05/17 12:06:00 45 2024/05/17 23:31:00 40
darwin 3 6.0 2024/05/17 16:15:00 32 2024/05/17 16:28:00 32
win64 2 4.0 2024/05/17 13:34:00 47 2024/05/17 14:42:00 39
3.3.1 38 76.0 2024/05/17 12:19:00 173 2024/05/17 23:31:00 40
3.2.2 2 4.0 2024/05/17 12:06:00 45 2024/05/17 12:24:00 45
3.2.3 10 20.0 2024/05/17 12:15:00 38 2024/05/17 23:30:00 38

Source:

{ Old file: tbs0217.pp }
{ in tp mode can't use the procvar in writeln          OK 0.99.11 (PFV) }

{$ifdef fpc}{$mode tp}{$endif}

type tmpproc=function:longint;

function a:longint;{$ifndef fpc}far;{$endif}
begin
 a:=-1;
end;

procedure tmp(aa: tmpproc);
begin
  writeln(aa);           { "Cannot read/write variables of this type", TP kan dit
wel? }
  if aa<>-1 then halt(1);
end;

begin
  tmp(a);               { de TP manier , in FPC moet dit zijn tmp(@a); }
end.

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