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: 163/7790/7953
Version: 3.2.3
Full version: 3.2.3-1376-gbff5cbd342
Comment: -XR/home/muller/sys-root/sparc64-linux -Xd -Xr/home/muller/sys-root/sparc64-linux
Machine: cfarm14
Category: 1
SVN revisions: bff5cbd342:c17a0e20f5:4f3b6199df:d1c29e6cb9
Submitter: muller
Date: 2024/05/08 21:03:00 <> 2024/05/04
Previous run: 947562
Next run: 948906

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

Record count: 1

Log of 948252:

Unhandled trap: 0x21
pc: 000000000010b770  npc: 000000000010b774
%g0-3: 0000000000000000 0000000000000000 0000004000d1e000 0000004000800ca0
%g4-7: 0000000000000000 0000004000d20760 0000000083287020 0000004000a1b560
%o0-3: 0000000000300c00 000000007ff00000 0000000000000000 00000000001adcb8 
%o4-7: 0000000000000001 0000004000a1a000 00000040008001a1 000000000019b75c 
%l0-3: 0000000000000004 0000000000000000 0000000000000001 0000004000800cf8 
%l4-7: 0000000000000000 0000004000a03828 0000004000a1a000 0000004000d1e000 
%i0-3: 000000000031e400 000000000031e518 00000000001adc80 0000004000a01160 
%i4-7: 0000004000a1a580 0000004000d20760 00000040008002b1 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.