Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4449513

JCK13a vm/lang tests, error 4F55545055540E43505003CB on jdk14-b61 c2,c2Xomp (4m)

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P1 P1
    • 1.4.0
    • 1.4.0
    • hotspot
    • beta
    • sparc
    • solaris_8
    • Verified

      JDK : 1.4.0-beta-b61
      JCK : jck1.3a
      Platform[s] : Solaris 8, Sparc (4m)
      switch/Mode : -server, -server -Xcomp -Failed
                       -client, -client -Xint, -client -Xcomp, -server -Xint - passed
      JCK test owner : http://javaweb.eng/jct/sqe/JCK-tck/usr/owners.jto
      Failing Test :


       1) lang/FP/fpl038/fpl03803m2/fpl03803m2.html
           lang/CLSS/clss138/clss13801/clss13801.html
           lang/CLSS/clss139/clss13901/clss13901.html
           lang/CLSS/clss140/clss14001/clss14001.html
           lang/CLSS/clss140/clss14002/clss14002.html
           lang/CONV/conv008/conv00801/conv00801.html
           lang/CONV/conv008/conv00802/conv00802.html
           lang/CONV/conv022/conv02201/conv02201.html
           lang/EXPR/expr038/expr03801/expr03801.html
           lang/EXPR/expr042/expr04201/expr04201.html
           lang/EXPR/expr057/expr05701/expr05701.html
           lang/EXPR/expr098/expr09801/expr09801.html
           lang/EXPR/expr107/expr10701/expr10701.html
           lang/EXPR/expr128/expr12802/expr12802.html
           lang/EXPR/expr128/expr12803/expr12803.html
           lang/EXPR/expr130/expr13001/expr13001.html
           lang/EXPR/expr130/expr13003/expr13003.html
           lang/EXPR/expr151/expr15102/expr15102.html
           lang/EXPR/expr259/expr25902/expr25902.html
           lang/EXPR/expr260/expr26002/expr26002.html
           lang/EXPR/expr309/expr30902/expr30902.html
           lang/EXPR/expr312/expr31201/expr31201.html
           lang/EXPR/expr312/expr31202/expr31202.html
           lang/EXPR/expr312/expr31203/expr31203.html
           lang/EXPR/expr313/expr31301/expr31301.html
           lang/EXPR/expr313/expr31302/expr31302.html
           lang/EXPR/expr313/expr31303/expr31303.html
           lang/EXPR/expr314/expr31406/expr31406.html
           lang/EXPR/expr319/expr31901/expr31901.html
           lang/EXPR/expr320/expr32001/expr32001.html
           lang/FP/fpl005/fpl00506m1/fpl00506m1.html
           lang/FP/fpl005/fpl00506m2/fpl00506m2.html
       **** lang/STMT/stmt115/stmt11501/stmt11501.html ---> see bug 4451864

           vm/instr/aastore/aastore001/aastore00101m1/aastore00101m1.html
           vm/instr/bastore/bastore001/bastore00101m1/bastore00101m1.html
           vm/instr/castore/castore001/castore00101m1/castore00101m1.html
           vm/instr/dastore/dastore001/dastore00101m1/dastore00101m1.html
           vm/instr/fastore/fastore001/fastore00101m1/fastore00101m1.html
           vm/instr/iastore/iastore001/iastore00101m1/iastore00101m1.html
           vm/instr/lastore/lastore002/lastore00201m1/lastore00201m1.html
           vm/instr/sastore/sastore005/sastore00501m1/sastore00501m1.html
          vm/constantpool/userDefined/userDefined002/userDefined00204/userDefined00204.htmlang/EXPR/expr134/expr13401/expr13401.html
      lang/EXPR/expr134/expr13402/expr13402.html
      lang/EXPR/expr151/expr15101/expr15101.html

      Test source location:
      =====================
      1) /net/jdk/export/disk8/local.java/jck1.3a/JCK-runtime-13a/tests/lang/FP/fpl038/fpl03803m2/fpl03803m2.java

      jtr file location:
      ==================
      1)
      file:///net/jtgb4u4c/export/sail16/results/merlin/b61/jck13a/sparc/s8_32bit_server_comp_jtg-s212/workDir/lang/FP/fpl038/fpl03803m2/fpl03803m2.jtr

      How to reproduce:
      ====================
      Run the attached script:
          fp_fpl03803m2.ksh -server
          fp_fpl03803m2.ksh -server -Xcomp

      --------Script START---------------------
      #!/bin/ksh
      SWITCH=${1+$@}
      JDK=/net/jdk/export/disk8/local.java/jdk1.4
      TESTBASE=/net/jdk/export/disk8/local.java/jck1.3a
      JCK=${TESTBASE}/JCK-runtime-13a
      executeClass=javasoft.sqe.tests.lang.fpl038.fpl03803m2.fpl03803m2
      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:
      =============
      #
      # HotSpot Virtual Machine Error, Internal Error
      # Please report this error at
      # http://java.sun.com/cgi-bin/bugreport.cgi
      #
      # Error ID: 4F55545055540E43505003CB 01
      #
      # Problematic Thread: prio=5 tid=0xd8610 nid=0xc runnable
      #


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

      SunOS jtg-s212 5.8 Generic sun4m sparc SUNW,SPARCstation-5


      takwing.cheung@Eng 2001-04-23

            mpalecznsunw Michael Paleczny (Inactive)
            tacheung Tak Wing Cheung (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: