Name: skR10017 Date: 12/22/2000
The following JCK1.3 tests fail on Windows with crash in -server -Xcomp:
Failing Tests:
=============
api/java_lang/System/SecurityManagerTests.html#setSecurityManager
vm/instr/idiv/idiv002/idiv00201/idiv00201.html
vm/instr/castore/castore008/castore00801/castore00801.html
vm/instr/irem/irem001/irem00101/irem00101.html
vm/instr/irem/irem006/irem00601/irem00601.html
lang/EXPR/expr275/expr27501/expr27501.html
lang/STMT/stmt072/stmt07201/stmt07201.html
lang/STMT/stmt141/stmt14102/stmt14102.html
lang/STMT/stmt143/stmt14301/stmt14301.html
lang/STMT/stmt082/stmt08203/stmt08203.html
lang/STMT/stmt084/stmt08402/stmt08402.html
lang/STMT/stmt005/stmt00591m6/stmt00591m6.html
JCK:
====
JCK1.3
Test source location:
====================
api test source:
/net/jdk/export/disk8/local.java/jck1.3/JCK-runtime-13fcs/tests/api/java_lang/System/setSecurityManagerTests.java
"vm" tests source can be found under te following dir (Go to the proper test dir to find the {testname}.java OR {testname.jasm):
/net/jdk/export/disk8/local.java/jck1.3/JCK-runtime-13fcs/tests/vm/instr/......
"lang" tests source can be found under the following test dir:
/net/jdk/export/disk8/local.java/jck1.3/JCK-runtime-13fcs/tests/lang/...
Platforms:
=============
Windows 2000
JDK, switches Info:
===================
% java -server -Xcomp -version
java version "1.4.0beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0beta-b44)
Java HotSpot(TM) Server VM (build 1.4beta-B44, compiled mode)
How to reproduce:
====================
To reproduce the bug, run script below (You may need to set JCK and JAVA_HOME).
Map your H drive to \\jdk\local-java
---------------------------------------------------------------------------------
#!/bin/sh
JAVA_HOME="H:/jdk1.4.0/win32"
JCK="H:/jck1.3/JCK-runtime-13fcs"
CLASSPATH="$JCK/classes;$JCK/javatest.jar"
export CLASSPATH
executeClass="javasoft.sqe.tests.vm.idiv.idiv002.idiv00201.idiv00201"
$JAVA_HOME/bin/java -server -Xcomp -version
$JAVA_HOME/bin/java -server -Xcomp -Xfuture -Djava.security.policy=${JCK}/lib/jck.policy ${executeClass}
RESULT="$?"
if [ $RESULT = 95 ]; then
echo Test passed
elif [ $RESULT = 97 ]; then
echo Test failed
else
echo Result is $RESULT
fi
---------------------------------------------------------------------------------
Test output:
====================
java version "1.4.0beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0beta-b44)
Java HotSpot(TM) Server VM (build 1.4beta-B44, compiled mode)
result: Failed. unexpected exit code: exit code -1073741675
Additional JCK related info:
============================
URL to find JCK test owners: http://javaweb.eng/jck/usr/owners.jto
======================================================================