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

t_id 663
t_adddate 2003/10/03
t_result 0
t_knownrunerror 2

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:34:00 30 2024/05/21 02:04:00 0
i386 27 54.0 2024/05/21 01:34:00 30 2024/05/21 02:04:00 0
x86_64 21 42.0 2024/05/21 01:35:00 26 2024/05/21 02:03:00 22
aarch64 2 4.0 2024/05/21 01:46:00 38 2024/05/21 02:03:00 35
linux 49 98.0 2024/05/21 01:34:00 30 2024/05/21 02:04:00 0
win32 1 2.0 2024/05/21 02:04:00 0 2024/05/21 02:04:00 0
3.3.1 31 62.0 2024/05/21 01:34:00 30 2024/05/21 02:04:00 0
3.2.3 19 38.0 2024/05/21 01:35:00 26 2024/05/21 02:03:00 26

Source:

{ %KNOWNRUNERROR=2 v10 computes cardinal > longint as cardinals }
{$R-}
var
  a : cardinal;
  b : longint;
begin
  a := 0;
  b := -1;
  if a > b then
    writeln ('OK')
  else
{$ifdef VER0}
    halt(2);
{$else not VER0}
{$ifdef VER1_0}
    halt(2);
{$else}
    halt(1);
{$endif}
{$endif}
end.

Link to SVN view of tbs/tb0447a.pp source.