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

t_id 869
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=50 Percentage= 100.00

Result type Cat. Count Percentage First date Last Date
Successfully run 50 100.0 2024/06/02 01:36:00 47 2024/06/02 05:04:00 31
i386 6 12.0 2024/06/02 01:36:00 47 2024/06/02 04:24:00 56
m68k 1 2.0 2024/06/02 03:55:00 53 2024/06/02 03:55:00 53
sparc 3 6.0 2024/06/02 03:07:00 41 2024/06/02 04:00:00 40
powerpc 1 2.0 2024/06/02 04:10:00 238 2024/06/02 04:10:00 238
x86_64 29 58.0 2024/06/02 01:57:00 22 2024/06/02 05:04:00 31
powerpc64 4 8.0 2024/06/02 04:15:00 53 2024/06/02 04:32:00 57
mips 1 2.0 2024/06/02 04:00:00 47 2024/06/02 04:00:00 47
mipsel 1 2.0 2024/06/02 04:06:00 185 2024/06/02 04:06:00 185
aarch64 4 8.0 2024/06/02 01:46:00 39 2024/06/02 04:26:00 35
linux 39 78.0 2024/06/02 01:36:00 47 2024/06/02 04:32:00 57
go32v2 2 4.0 2024/06/02 03:45:00 54 2024/06/02 04:24:00 56
solaris 9 18.0 2024/06/02 03:07:00 41 2024/06/02 05:04:00 31
3.3.1 30 60.0 2024/06/02 01:46:00 39 2024/06/02 05:04:00 31
3.2.3 20 40.0 2024/06/02 01:36:00 47 2024/06/02 04:32:00 57

Source:

{ %version=1.1 }

{$ifdef fpc}
{$MODE DELPHI}
{$endif}

const Inf=1/0;
      NaN=0/0;
      MinusInf=-Inf;
var
  s : string;
  error : boolean;
begin
  error:=false;
  str(Inf,s);
  writeln('Inf: "',s,'"');
  if s<>'                     +Inf' then
   error:=true;
  str(NaN,s);
  writeln('Nan: "',s,'"');
  if s<>'                      Nan' then
   error:=true;
  str(MinusInf,s);
  writeln('MinusInf: "',s,'"');
  if s<>'                     -Inf' then
   error:=true;
  if error then
   begin
     writeln('ERROR!');
     halt(1);
   end;
end.

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