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

t_id 1482
t_adddate 2005/02/03
t_result 0
Flag t_fail set
t_knownrunerror 0

Detailed test run results:

Record count: 50

Total = 50

OK=33 Percentage= 66.00

Skipped=17 Percentage= 34.00

Result type Cat. Count Percentage First date Last Date
Success, compilation failed 33 66.0 2024/05/09 00:38:00 32 2024/05/09 01:31:00 26
i386 29 87.9 2024/05/09 00:38:00 32 2024/05/09 01:31:00 26
sparc 2 6.1 2024/05/09 00:54:00 39 2024/05/09 01:13:00 46
aarch64 2 6.1 2024/05/09 00:58:00 35 2024/05/09 01:30:00 35
linux 31 93.9 2024/05/09 00:38:00 32 2024/05/09 01:31:00 26
solaris 2 6.1 2024/05/09 00:54:00 39 2024/05/09 01:13:00 46
3.3.1 25 75.8 2024/05/09 00:58:00 35 2024/05/09 01:31:00 24
3.2.3 8 24.2 2024/05/09 00:38:00 32 2024/05/09 01:31:00 26
Skipping test because for other cpu 17 34.0 2024/05/09 00:34:00 47 2024/05/09 01:30:00 23
x86_64 8 47.1 2024/05/09 00:46:00 21 2024/05/09 01:30:00 23
powerpc64 9 52.9 2024/05/09 00:34:00 47 2024/05/09 01:26:00 54
linux 16 94.1 2024/05/09 00:34:00 47 2024/05/09 01:30:00 23
win64 1 5.9 2024/05/09 00:57:00 26 2024/05/09 00:57:00 26
3.3.1 17 100.0 2024/05/09 00:34:00 47 2024/05/09 01:30:00 23

Source:

{ %skipcpu=x86_64 }
{ %fail }

{ Source provided for Free Pascal Bug Report 3626 }
{ Submitted by "Marc Geldon" on  2005-02-02 }
{ e-mail: marc.geldon@proitsystems.de }
program project1;

{$H+}

uses
  SysUtils
  { add your units here };

var
  i: Integer;
begin
  { This should give an range check error at compile time for
    32bit systems }
  for i := 0 to 90000000000000000 do
  begin
    writeln(inttostr(i));
  end;
end.

Link to SVN view of webtbf/tw3626.pp source.