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

t_id 77
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 06:16:00 188 2024/05/21 12:20:00 37
i386 7 14.0 2024/05/21 07:07:00 60 2024/05/21 11:28:00 79
m68k 1 2.0 2024/05/21 07:39:00 58 2024/05/21 07:39:00 58
sparc 3 6.0 2024/05/21 07:50:00 62 2024/05/21 08:46:00 62
powerpc 4 8.0 2024/05/21 06:16:00 188 2024/05/21 07:59:00 246
x86_64 4 8.0 2024/05/21 07:20:00 104 2024/05/21 09:12:00 85
powerpc64 7 14.0 2024/05/21 06:46:00 70 2024/05/21 08:11:00 63
mips 1 2.0 2024/05/21 07:46:00 54 2024/05/21 07:46:00 54
mipsel 2 4.0 2024/05/21 07:17:00 228 2024/05/21 07:54:00 52
aarch64 14 28.0 2024/05/21 07:13:00 47 2024/05/21 12:20:00 37
sparc64 4 8.0 2024/05/21 07:17:00 165 2024/05/21 09:06:00 163
riscv64 2 4.0 2024/05/21 07:46:00 31 2024/05/21 08:38:00 36
loongarch64 1 2.0 2024/05/21 07:33:00 38 2024/05/21 07:33:00 38
linux 43 86.0 2024/05/21 06:16:00 188 2024/05/21 12:20:00 37
go32v2 6 12.0 2024/05/21 07:07:00 60 2024/05/21 11:28:00 79
darwin 1 2.0 2024/05/21 07:13:00 47 2024/05/21 07:13:00 47
3.3.1 25 50.0 2024/05/21 07:13:00 47 2024/05/21 11:28:00 79
3.2.3 25 50.0 2024/05/21 06:16:00 188 2024/05/21 12:20:00 37

Source:

{$mode objfpc}
uses sysutils;

{$ifndef FPC}
  {$define ENDIAN_LITTLE}
{$endif}
type
  int64rec = record
{$ifdef ENDIAN_LITTLE}
    lo,hi:
{$else }
    hi,lo :
{$endif}
       cardinal;
   end;

var
  haserror,
  error: boolean;
  b: byte;
  s: shortint;
  i: smallint;
  w: word;
  l: longint;
  c: cardinal;
  t: int64;
  q: qword;

{$r+}

begin
  haserror := false;
  b := 255;
  t := b;
  q := b;
  b := 0;
  t := b;
  q := b;

  s := 127;
  t := s;
  q := s;
  s := -128;
  t := s;
  try
    error := true;
    q := s;
  except
    error := false;
  end;
  haserror := haserror or error;

  w := 0;
  t := w;
  q := w;
  w := 65535;
  t := w;
  q := w;

  i := 32767;
  t := i;
  q := i;
  i := -32768;
  t := i;
  try
    error := true;
    q := i;
  except
    error := false;
  end;
  haserror := haserror or error;

  c := 0;
  t := c;
  q := c;
  c := $ffffffff;
  t := c;
  q := c;

  l := -maxlongint-1;
  t := l;
  try
    error := true;
    q := l;
  except
    error := false;
  end;
  haserror := haserror or error;
  l := maxlongint;
  t := l;
  q := l;

  q := 0;
  t := q;
  with int64rec(q) do
  begin
    lo := 0;
    hi := $ffffffff;
  end;
  try
    error := true;
    t := q;
  except
    error := false;
  end;
  haserror := haserror or error;

  with int64rec(t) do
  begin
    lo := 0;
    hi := $80000000;
  end;
  try
    error := true;
    q := t;
  except
    error := false;
  end;
  haserror := haserror or error;
  with int64rec(t) do
  begin
    lo := $ffffffff;
    hi := $7fffffff;
  end;
  q := t;
  if haserror then
    begin
      writeln('64bit range checking still buggy!');
      halt(1);
    end;
end.

Link to SVN view of test/trange5.pp source.