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

t_id 1487
t_cpu i386
t_adddate 2005/02/06
t_result 0
t_knownrunerror 0

Detailed test run results:

Record count: 50

Total = 50

OK=41 Percentage= 82.00

Skipped=9 Percentage= 18.00

Result type Cat. Count Percentage First date Last Date
Successfully run 41 82.0 2024/06/02 01:59:00 30 2024/06/02 03:12:00 0
i386 9 22.0 2024/06/02 01:59:00 30 2024/06/02 02:47:00 33
x86_64 29 70.7 2024/06/02 02:03:00 28 2024/06/02 03:12:00 0
aarch64 3 7.3 2024/06/02 02:36:00 40 2024/06/02 02:59:00 37
linux 41 100.0 2024/06/02 01:59:00 30 2024/06/02 03:12:00 0
3.3.1 25 61.0 2024/06/02 01:59:00 30 2024/06/02 03:12:00 0
3.2.3 16 39.0 2024/06/02 02:20:00 40 2024/06/02 03:06:00 42
Skipping test because for other target 9 18.0 2024/06/02 02:33:00 41 2024/06/02 03:10:00 0
i386 1 11.1 2024/06/02 03:03:00 25 2024/06/02 03:03:00 25
sparc 1 11.1 2024/06/02 02:33:00 41 2024/06/02 02:33:00 41
x86_64 7 77.8 2024/06/02 02:54:00 32 2024/06/02 03:10:00 0
win32 1 11.1 2024/06/02 03:03:00 25 2024/06/02 03:03:00 25
solaris 8 88.9 2024/06/02 02:33:00 41 2024/06/02 03:10:00 0
3.3.1 8 88.9 2024/06/02 02:54:00 32 2024/06/02 03:10:00 0
3.2.3 1 11.1 2024/06/02 02:33:00 41 2024/06/02 02:33:00 41

Source:

{ %target=linux }
{ %cpu=i386 }

{ Source provided for Free Pascal Bug Report 3161 }
{ Submitted by "Michalis Kamburelis" on  2004-06-12 }
{ e-mail: michalis@camelot.homedns.org }

{$mode delphi}

uses 
  Libc,
  SysUtils;

var A:Extended;
err : boolean;
begin
  err:=true;
  try
 { When I don't do "uses Libc",
   this line raises RE 205 (EOverflow). }
 A:=1e800; Writeln(Exp(A));
 except
   writeln('Exception raised');
   err:=false;
 end;
 if err then
    halt(1);
end.

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