-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
None
-
1.3.0
-
x86
-
windows_nt
Name: dkC59003 Date: 12/03/99
The HotSpot 1.3fcs-P, internal (12/02) fails on win32 when it is called from java program
by the runtime.exec(command, environment[]) method, where command is
java -Xdebug -Xnoagent -Xrunb4289109 b4289109
But when the same command is executed as cshell command line, the HotSpot
works perfectly.
The HotSpot failure depends on the total length of the environment strings array,
which is passed as a parameter to the runtime.exec() method.
For example, if this length equals 511 the HotSpot runs the b4289109 class
perfectly, but if this length equals 512 the HotSpot fails.
To reproduce the bug run doit.bat in GammaBase/Bugs/<this bug number>.
The doit.bat file contains the variables which must be tuned :
The JDK_TO_RUN_TEST variable defines JDK to compile the java-files
of the test and execute runtime_exec_test class.
The TESTED_JAVA variable defines the java to call by runtime.exec() method
in the runtime_exec_test.
The ENVIRONMENT_SIZE variable defines overall length of the environment strings
to pass to the runtime.exec() method.
The test fails under the HotSpot 1.3fcs-P on win32 with ENVIRONMENT_SIZE=512.
The test fails under the HotSpot 2.0rc1 on win32 with ENVIRONMENT_SIZE=512.
The test passes under the HotSpot 1.3fcs-P on win32 with ENVIRONMENT_SIZE=511.
The test passes under the Classic VMP on win32 with ENVIRONMENT_SIZE=512, 511.
The test passes under the The HotSparc 1.3-Q on Solaris with ENVIRONMENT_SIZE=512, 511.
See logs:
For ENVIRONMENT_SIZE = 512:
%doit.bat
java version "1.3.0"
Java(TM) 2 Runtime Environment, Standart Edition (build 1.3.0-P)
Java HotSpot(TM) Client VM (build 1.3-internal, mixed mode)
----> COMMAND_TO_RUN[0] = S:\ld24\java\hotspot\jdk1.3.0\win32\bin\java -Xdebug -Xnoagent
-Xrunb4289109 b4289109
----> ENVIRONMENT[0] = PATH=D:\BOND\HSPT\reg_test\runtime_exec_test
----> ENVIRONMENT[1] = SHELL=D:\KShell\mksnt\sh.exe
----> ENVIRONMENT[2] = SystemRoot=C:\WINNT
----> ENVIRONMENT[3] = CLASSPATH=D:\BOND\HSPT\reg_test\runtime_exec_test
----> ENVIRONMENT[4] =
EXTRA_Options=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD
DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD
DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD
----> ENVIRONMENT[5] = OSA=win32
----> ENVIRONMENT[6] = OSO=
----> ENVIRONMENT[7] = LD_LIBRARY_PATH=D:\BOND\HSPT\reg_test\runtime_exec_test
----> TOTAL_ENVIRONMENT_SIZE = 512
----> PROCESS.exitValue() = -1073741819
----> PROCESS.OUT_SIZE = 0
----> PROCESS.ERROR_SIZE = 0
----> TEST FAILED
For ENVIRONMENT_SIZE = 511:
%doit.bat
java version "1.3.0"
Java(TM) 2 Runtime Environment, Standart Edition (build 1.3.0-P)
Java HotSpot(TM) Client VM (build 1.3-internal, mixed mode)
----> COMMAND_TO_RUN[0] = S:\ld24\java\hotspot\jdk1.3.0\win32\bin\java -Xdebug -Xnoagent
-Xrunb4289109 b4289109
----> ENVIRONMENT[0] = PATH=D:\BOND\HSPT\reg_test\runtime_exec_test
----> ENVIRONMENT[1] = SHELL=D:\KShell\mksnt\sh.exe
----> ENVIRONMENT[2] = SystemRoot=C:\WINNT
----> ENVIRONMENT[3] = CLASSPATH=D:\BOND\HSPT\reg_test\runtime_exec_test
----> ENVIRONMENT[4] =
EXTRA_Options=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD
DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD
DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD
----> ENVIRONMENT[5] = OSA=win32
----> ENVIRONMENT[6] = OSO=
----> ENVIRONMENT[7] = LD_LIBRARY_PATH=D:\BOND\HSPT\reg_test\runtime_exec_test
----> TOTAL_ENVIRONMENT_SIZE = 511
----> PROCESS.exitValue() = 95
----> PROCESS.OUT_SIZE = 0
----> PROCESS.ERROR_SIZE = 0
----> TEST PASSED
The Classic VM passes the test:
%doit.bat -classic
java version "1.3.0"
Java(TM) 2 Runtime Environment, Standart Edition (build 1.3.0-P)
Classic VM (build 1.3.0-P, native threads, nojit)
----> COMMAND_TO_RUN[0] = S:\ld24\java\hotspot\jdk1.3.0\win32\bin\java -classic -Xdebug -Xnoagent
-Xrunb4289109 b4289109
----> ENVIRONMENT[0] = PATH=D:\BOND\HSPT\reg_test\runtime_exec_test
----> ENVIRONMENT[1] = SHELL=D:\KShell\mksnt\sh.exe
----> ENVIRONMENT[2] = SystemRoot=C:\WINNT
----> ENVIRONMENT[3] = CLASSPATH=D:\BOND\HSPT\reg_test\runtime_exec_test
----> ENVIRONMENT[4] =
EXTRA_Options=DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD
DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD
DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD
----> ENVIRONMENT[5] = OSA=win32
----> ENVIRONMENT[6] = OSO=
----> ENVIRONMENT[7] = LD_LIBRARY_PATH=D:\BOND\HSPT\reg_test\runtime_exec_test
----> TOTAL_ENVIRONMENT_SIZE = 512
----> PROCESS.exitValue() = 95
----> PROCESS.OUT_SIZE = 0
----> PROCESS.ERROR_SIZE = 0
----> TEST PASSED
The HotSparc 1.3-Q (on Solaris) passes the test
(use doit.sh to test on Solaris)
======================================================================