JDK-4463776 : JCK13a vm/concepts/exceptions/exceptions031 core file on c1 & c1 Xcomp on X86
  • Type: Bug
  • Component: hotspot
  • Sub-Component: compiler
  • Affected Version: 1.4.0
  • Priority: P2
  • Status: Closed
  • Resolution: Duplicate
  • OS: generic
  • CPU: x86
  • Submitted: 2001-05-29
  • Updated: 2001-05-30
  • Resolved: 2001-05-30
Related Reports
Duplicate :  
Description
JDK            : 1.4.0-beta-b63a/b
JCK            : jck1.3a
Platform[s]    : Sol 6,7,8,9 of x86
switch/Mode    : 
                 c1, c1 Xcomp  --> Failed
                 c1 Xint, c2,c2 Xint, c2 Xcomp ---> Passed

JCK test owner : http://javaweb.eng/jct/sqe/JCK-tck/usr/owners.jto
Failing Test   : 
 
vm/concepts/exceptions/exceptions031/exceptions03101/exceptions03101.html

Test source location:
=====================
/net/jdk/export/disk8/local.java/jck1.3a/JCK-runtime-13a/tests/vm/concepts/exceptions/exceptions031/exceptions03101/exceptions03101.java

jtr file location:
==================
file:///net/jtgb4u4c/export/sail16/results/merlin/b63a/jck13a/i386/s9_client_jtg-i103/workDir/vm/failed.html


How to reproduce:
====================
run the attached script
  vm_exceptions031.ksh 
  vm_exceptions031.ksh -client -Xcomp

--------Script START---------------------
#!/bin/ksh
SWITCH=${1+$@}
JDK=/net/jdk/export/disk8/local.java/jdk1.4.0_beta_refresh
TESTBASE=/net/jdk/export/disk8/local.java/jck1.3a
JCK=${TESTBASE}/JCK-runtime-13a
executeClass=javasoft.sqe.tests.vm.concepts.exceptions.exceptions031.exceptions03101.exceptions03101
excludeCmd=
executeClassArgs=
executeTestURL=
headless=
executeContextArgs=

case `uname -s` in
  SunOS)
   ARCH=`uname -p`
   case $ARCH in
    sparc)
      sharedJDK=$JDK/solsparc
      ;;
    i386)
      sharedJDK=$JDK/solx86
      ;;
   esac
   ;;
  Linux)
   sharedJDK=$JDK/linux-i386
   ARCH=linux
   ;;
esac

CLASSPATH=${JCK}/classes:${JCK}/javatest.jar
DISPLAY=${DISPLAY-$HOST:0.0}

if `echo $SWITCH|grep "\-d64" >/dev/null`; then
  LD_LIBRARY_PATH=${JCK}/lib/sparcv9
else
  LD_LIBRARY_PATH=${JCK}/lib/${ARCH}
fi


PATH=$JDK/bin:$sharedJDK/bin:$PATH

export PATH CLASSPATH DISPLAY LD_LIBRARY_PATH


echo
java ${SWITCH} -version
echo
java ${SWITCH} -verify -Xfuture -Djava.security.policy=${JCK}/lib/jck.policy -Djava.rmi.activation.port=${executeClass} -Djava.awt.headless=${headless} ${executeClass} ${excludeCmd}  ${executeClassArgs} ${executeContextArgs} ${executeTestURL} 
--------Script END----------------------

Test output:
=============

no output but core file created.

Specific Machine Info:
=====================

SunOS jtg-i104 5.6 Generic_105182-25 i86pc i386 i86pc


takwing.cheung@Eng 2001-05-29

Comments
EVALUATION This test passes on Solaris 2.6, 7 and 8. I believe this may be a bug only on Solaris 9. I'm looking for machines with which to test. david.cox@Eng 2001-05-30 I reproduced this under the debugger against 1.4_beta_refresh and it's a stack overflow. It's no longer reproducible so I'm closing this as a duplicate of 4294942 which was our general fix for stack overflow problems. thomas.rodriguez@eng 2001-05-30
30-05-2001