Test suite results for test file webtbs/tw3161.pp

Test run data :

Run ID:
Operating system: linux
Processor: sparc64
Version: 3.2.3
Fails/OK/Total: 155/7800/7955
Version: 3.2.3
Full version: 3.2.3-1373-gae0fe8a6a0
Comment: -XR/home/pierre/sys-root/sparc64-linux -Xd -Xr/home/pierre/sys-root/sparc64-linux
Machine: gcclocal
Category: 1
SVN revisions: fdf93c5b29:c17a0e20f5:ae0fe8a6a0:d1c29e6cb9
Submitter: pierre
Date: 2024/04/28 12:15:00 <> 2024/04/09
Previous run: 940437
Next run: 941909

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
482258932941193FalseFalseFailed to run

Record count: 1

Log of 941193:

Unhandled trap: 0x21
pc: 000000000010b770  npc: 000000000010b774
%g0-3: 0000000000000000 0000000000000000 0000004000d20000 0000004000800c40
%g4-7: 0000000000000000 0000004000d22760 0000000083287020 0000004000a1d560
%o0-3: 0000000000300c00 000000007ff00000 0000000000000000 00000000001adcb8 
%o4-7: 0000000000000001 0000004000a1c000 0000004000800141 000000000019b75c 
%l0-3: 0000000000000004 0000000000000000 0000000000000001 0000004000800c98 
%l4-7: 0000000000000000 0000004000a03828 0000004000a1c000 0000004000d20000 
%i0-3: 000000000031e400 000000000031e518 00000000001adc80 0000004000a01160 
%i4-7: 0000004000a1c580 0000004000d22760 0000004000800251 0000000000100664 
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.