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

t_id 840
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/21 01:40:00 15 2024/05/21 06:02:00 0
i386 8 16.0 2024/05/21 01:52:00 47 2024/05/21 06:01:00 28
m68k 1 2.0 2024/05/21 05:47:00 63 2024/05/21 05:47:00 63
sparc 1 2.0 2024/05/21 04:50:00 56 2024/05/21 04:50:00 56
arm 1 2.0 2024/05/21 05:53:00 67 2024/05/21 05:53:00 67
x86_64 17 34.0 2024/05/21 01:40:00 15 2024/05/21 06:00:00 29
powerpc64 14 28.0 2024/05/21 04:20:00 53 2024/05/21 05:49:00 112
mips 1 2.0 2024/05/21 05:57:00 160 2024/05/21 05:57:00 160
aarch64 6 12.0 2024/05/21 04:37:00 35 2024/05/21 06:02:00 0
riscv64 1 2.0 2024/05/21 04:44:00 30 2024/05/21 04:44:00 30
linux 38 76.0 2024/05/21 01:40:00 15 2024/05/21 06:00:00 175
win32 2 4.0 2024/05/21 04:53:00 28 2024/05/21 06:01:00 28
go32v2 2 4.0 2024/05/21 04:56:00 56 2024/05/21 05:41:00 55
solaris 4 8.0 2024/05/21 03:16:00 19 2024/05/21 06:00:00 29
darwin 4 8.0 2024/05/21 05:42:00 24 2024/05/21 06:02:00 0
3.3.1 25 50.0 2024/05/21 01:40:00 15 2024/05/21 06:02:00 0
3.2.3 25 50.0 2024/05/21 01:52:00 47 2024/05/21 06:01:00 28

Source:

{ Source provided for Free Pascal Bug Report 1699 }
{ Submitted by "SHADOW" on  2001-11-25 }
{ e-mail: mdikm@hotmail.com }
const
  i : longint = 0;


procedure nset(var d:byte;p,c:byte;v:byte);
begin
  i:=i or 1;
end;

procedure nset(var d:word;p,c:byte;v:word);
begin
  i:=i or 2;
end;

procedure nset(var d:cardinal;p,c:byte;v:cardinal);
begin
  i:=i or 4;
end;

procedure nset(var d:qword;p,c:byte;v:qword);
begin
  i:=i or 8;
end;

var
  b : byte;
  w : word;
  c : cardinal;
  q : qword;
begin
  nset(b,0,0,0);
  nset(w,0,0,0);
  nset(c,0,0,0);
  nset(q,0,0,0);
  if i<>15 then
   begin
     Writeln('Error');
     halt(1);
   end;
end.

Link to SVN view of webtbs/tw1699.pp source.