Test suite results for test file webtbs/tw3161.pp

Test run data :

Run ID:
Operating system: linux
Processor: sparc
Version: 3.2.3
Fails/OK/Total: 76/7896/7972
Version: 3.2.3
Full version: 3.2.3-1373-gae0fe8a6a0
Comment: -XR/home/pierre/sys-root/sparc-linux -Xd -Xr/home/pierre/sys-root/sparc-linux
Machine: gcclocal
Category: 1
SVN revisions: fdf93c5b29:c17a0e20f5:ae0fe8a6a0:d1c29e6cb9
Submitter: pierre
Date: 2024/04/28 11:53:00 <> 2024/04/09
Previous run: 940418
Next run: 941887

Hide skipped tests

Hide successful 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:

tr_idruntr_oktr_skiptr_result
482197004941185FalseFalseFailed to run

Record count: 1

Log of 941185:

Unhandled trap: 0x21
pc: 000000000001a0a0  npc: 000000000001a0a4
%g0-3: 0000000000000000 00000000000e5ef0 000000002a0b2d48 0000000000000000
%g4-7: 0000000000000000 0000000000000030 5f5f676d6f6e5f73 000000003fe0e6d0
%o0-3: 00000000000d0400 000000007ff00000 0000000000000000 0000000000010190 
%o4-7: 000000003ffff1f0 000000003fffef00 0000000040800e70 000000000009dd14 
%l0-3: 0000000000000004 0000000000000001 0000000000000000 0000000040800f5c 
%l4-7: 000000003fffec78 0000000000000000 000000003fffef00 000000003ffb2000 
%i0-3: 000000006974e718 00000000d7d7625a 00000000000e4d60 000000003ffb3658 
%i4-7: 0000000000000000 0000000000000000 0000000040800f28 00000000000104ec 
pstate: 00000092 ccr: 99 (icc: N--C xcc: N--C) asi: 82 tl: 0 pil: 0 gl: 0
tbr: 0000000000000000 hpstate: 0000000000000000 htba: 0000000000000000
cansave: 5 canrestore: 1 otherwin: 0 wstate: 0 cleanwin: 7 cwp: 2
fsr: 000000000f804809 y: 0000000000000000 fprs: 0000000000000001

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.