Test suite results for test file test/cg/cdecl/taoc4.pp

Test run data :

Run ID:
Operating system: linux
Processor: x86_64
Version: 3.3.1
Fails/OK/Total: 34/9452/9486
Version: 3.3.1
Full version: 3.3.1-15617-g1de3aba4e3
Comment: -XR/home/muller/sys-root/x86_64-linux -Xd -Xr/home/muller/sys-root/x86_64-linux
Machine: cfarm421
Category: 1
SVN revisions: 1de3aba4e3:0655b342d4:20c95f0455:61397d40ae
Submitter: muller
Date: 2024/04/27 13:34:00 <> 2024/04/26
Previous run: 939773
Next run: 941235

Hide skipped tests

Hide successful tests

Test file "test/cg/cdecl/taoc4.pp" information:

t_id 213
t_adddate 2003/10/03
t_result 0
t_knownrunerror 0

Detailed test run results:

tr_idruntr_oktr_skiptr_result
477720891940465FalseTrueSkipping test because for other cpu

Record count: 1

No log of 940465.

Source:

{ fourth simple array of const test }

{$mode objfpc}


program test_cdecl_array_of_const;

var
 l : longint;

const
  has_errors : boolean = false;

procedure test_one_longint(args : array of const);cdecl;
var
  p : plongint;
begin
 p:=plongint(@args);
 l:=p^;
end;

procedure test_two_longints(args : array of const);cdecl;
var
  p : plongint;
begin
 p:=plongint(@args);
 cardinal(p):=cardinal(p)+sizeof(longint);
 l:=p^;
end;

begin
 l:=4;
 test_one_longint([345]);
 if l<>345 then
   has_errors:=true;
 l:=4;
 test_one_longint([345,245]);
 if l<>345 then
   has_errors:=true;
 l:=4;
 test_one_longint([345,245,678]);
 if l<>345 then
   has_errors:=true;
 l:=4;
 test_two_longints([345,456]);
 if l<>456 then
   has_errors:=true;
 if has_errors then
   begin
     Writeln('cdecl array of const problem');
     halt(1);
   end;
end.

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