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=45 Percentage= 90.00

Skipped=5 Percentage= 10.00

Result type Cat. Count Percentage First date Last Date
Successfully run 45 90.0 2024/05/20 23:44:00 14 2024/05/21 01:32:00 28
i386 33 73.3 2024/05/21 00:08:00 23 2024/05/21 01:32:00 28
x86_64 7 15.6 2024/05/20 23:44:00 14 2024/05/21 01:25:00 26
powerpc64 2 4.4 2024/05/21 01:10:00 101 2024/05/21 01:11:00 108
aarch64 3 6.7 2024/05/21 00:12:00 32 2024/05/21 01:29:00 35
linux 45 100.0 2024/05/20 23:44:00 14 2024/05/21 01:32:00 28
3.3.1 28 62.2 2024/05/20 23:44:00 14 2024/05/21 01:32:00 28
3.2.3 17 37.8 2024/05/21 00:08:00 23 2024/05/21 01:30:00 34
Skipping test because for other target 5 10.0 2024/05/20 23:33:00 38 2024/05/20 23:55:00 41
sparc 5 100.0 2024/05/20 23:33:00 38 2024/05/20 23:55:00 41
solaris 5 100.0 2024/05/20 23:33:00 38 2024/05/20 23:55:00 41
3.3.1 2 40.0 2024/05/20 23:37:00 42 2024/05/20 23:40:00 45
3.2.3 3 60.0 2024/05/20 23:33:00 38 2024/05/20 23:55: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.