Test suite results for test file webtbs/tw3161.pp

Test run data :

Run ID:
Operating system: linux
Processor: sparc64
Version: 3.3.1
Fails/OK/Total: 175/9036/9211
Version: 3.3.1
Full version: 3.3.1-15676-g9b1861a104
Comment: -XR/home/muller/sys-root/sparc64-linux -Xd -Xr/home/muller/sys-root/sparc64-linux
Machine: cfarm14
Category: 1
SVN revisions: 9b1861a104:d6cf3c98d0:e657d6a07d:485b31de21
Submitter: muller
Date: 2024/05/08 12:20:00 <> 2024/05/07
Previous run: 947438
Next run: 948805

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

Record count: 1

Log of 948167:

Unhandled trap: 0x21
pc: 000000000010be50  npc: 000000000010be54
%g0-3: 0000000000000000 0000000000000000 0000004000d1e000 0000004000800bc0
%g4-7: 0000000000000001 0000004000d20760 0000000083287020 0000004000a1b560
%o0-3: 0000000000301c00 000000006974e718 0000000000000018 0000000000000000 
%o4-7: 0000000000000001 0000004000a1a000 00000040008000c1 00000000001be43c 
%l0-3: 00000000003001e8 0000000000000004 0000000000000001 0000004000800c18 
%l4-7: 0000000000000000 0000004000a03828 0000004000a1a000 0000004000d1e000 
%i0-3: 0000000000326400 00000000d7d7625a 00000000001d2750 0000004000a01160 
%i4-7: 0000004000a1a580 0000004000d20760 00000040008001d1 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.