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

t_id 1164
t_adddate 2003/10/24
t_result 0
Flag t_fail set
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
Success, compilation failed 50 100.0 2024/05/20 16:09:00 22 2024/05/20 23:32:00 40
i386 19 38.0 2024/05/20 16:29:00 52 2024/05/20 23:31:00 27
m68k 1 2.0 2024/05/20 22:44:00 190 2024/05/20 22:44:00 190
sparc 4 8.0 2024/05/20 23:27:00 38 2024/05/20 23:32:00 40
powerpc 1 2.0 2024/05/20 23:05:00 185 2024/05/20 23:05:00 185
arm 1 2.0 2024/05/20 22:30:00 59 2024/05/20 22:30:00 59
x86_64 8 16.0 2024/05/20 16:09:00 22 2024/05/20 19:35:00 26
powerpc64 2 4.0 2024/05/20 23:13:00 213 2024/05/20 23:20:00 71
mips 1 2.0 2024/05/20 22:51:00 240 2024/05/20 22:51:00 240
mipsel 1 2.0 2024/05/20 22:58:00 148 2024/05/20 22:58:00 148
aarch64 12 24.0 2024/05/20 16:27:00 32 2024/05/20 22:24:00 44
linux 11 22.0 2024/05/20 22:24:00 44 2024/05/20 23:30:00 79
solaris 20 40.0 2024/05/20 16:29:00 52 2024/05/20 23:32:00 40
darwin 11 22.0 2024/05/20 16:27:00 32 2024/05/20 17:50:00 56
win64 8 16.0 2024/05/20 16:09:00 22 2024/05/20 19:35:00 26
3.3.1 13 26.0 2024/05/20 16:09:00 22 2024/05/20 23:32:00 40
3.2.2 11 22.0 2024/05/20 16:29:00 52 2024/05/20 17:30:00 45
3.2.3 26 52.0 2024/05/20 16:13:00 26 2024/05/20 23:30:00 79

Source:

{ %FAIL }
{ second simple array of const test }
{ there is no way know how many args
  are psuhed for a cdecl'ared araay of const
  the compiler should complain here }

{$mode objfpc}


program test_cdecl_array_of_const;

var
 l : longint;

const
  has_errors : boolean = false;

procedure test(format : pchar; const args : array of const);cdecl;
begin
 l:=high(args);
end;

begin
 l:=4;
 test('dummy',[234]);
 if l<>1 then
   has_errors:=true;
 if has_errors then
   halt(1);
end.

Link to SVN view of test/cg/cdecl/taoc3.pp source.