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

t_id 577
t_version 1.1
t_adddate 2003/10/03
t_result 0
t_knownrunerror 0

Detailed test run results:

Record count: 50

Total = 50

OK=25 Percentage= 50.00

Skipped=11 Percentage= 22.00

Result type Cat. Count Percentage First date Last Date
Failed to run 14 28.0 2024/09/26 19:12:00 130 2024/09/26 22:29:00 103
powerpc64 14 100.0 2024/09/26 19:12:00 130 2024/09/26 22:29:00 103
linux 14 100.0 2024/09/26 19:12:00 130 2024/09/26 22:29:00 103
3.3.1 2 14.3 2024/09/26 19:12:00 130 2024/09/26 19:18:00 143
3.2.3 12 85.7 2024/09/26 21:17:00 71 2024/09/26 22:29:00 103
Successfully run 25 50.0 2024/09/26 18:42:00 90 2024/09/26 23:02:00 44
powerpc 14 56.0 2024/09/26 19:41:00 35 2024/09/26 23:02:00 44
powerpc64 3 12.0 2024/09/26 18:42:00 90 2024/09/26 21:52:00 64
riscv64 8 32.0 2024/09/26 19:14:00 123 2024/09/26 19:59:00 123
linux 25 100.0 2024/09/26 18:42:00 90 2024/09/26 23:02:00 44
3.3.1 21 84.0 2024/09/26 18:42:00 90 2024/09/26 20:38:00 84
3.2.3 4 16.0 2024/09/26 21:48:00 61 2024/09/26 23:02:00 44
Skipping test because for other target 11 22.0 2024/09/26 19:31:00 339 2024/09/26 22:50:00 299
i386 4 36.4 2024/09/26 19:54:00 70 2024/09/26 22:38:00 79
wasm32 7 63.6 2024/09/26 19:31:00 339 2024/09/26 22:50:00 299
go32v2 4 36.4 2024/09/26 19:54:00 70 2024/09/26 22:38:00 79
wasi 7 63.6 2024/09/26 19:31:00 339 2024/09/26 22:50:00 299
3.3.1 11 100.0 2024/09/26 19:31:00 339 2024/09/26 22:50:00 299

Source:

{ %version=1.1 }
{ %TARGET=linux }

{$linklib c}

type
  tprintfproc=procedure(t:pchar);varargs;cdecl;

procedure printf(t:pchar);varargs;cdecl;external;

var
  t : tprintfproc;
begin
  printf('Proc test %d %s %f'#10,1,'test',1234.5678);

  t:=@printf;
  t('Procvar test %d %s %f'#10,2,'test',1234.5678);
end.

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