diff options
author | Mark Spruiell <mes@zeroc.com> | 2007-01-30 20:13:03 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2007-01-30 20:13:03 +0000 |
commit | 7c535a8ece3425c6f3bb05affc740bf5b868015d (patch) | |
tree | ad76a28be1e609e95387fbd9c3253eb222df4057 /java/config/TestUtil.py | |
parent | cleanup (diff) | |
download | ice-7c535a8ece3425c6f3bb05affc740bf5b868015d.tar.bz2 ice-7c535a8ece3425c6f3bb05affc740bf5b868015d.tar.xz ice-7c535a8ece3425c6f3bb05affc740bf5b868015d.zip |
add jdk14 variable for test/Ice/threads
Diffstat (limited to 'java/config/TestUtil.py')
-rw-r--r-- | java/config/TestUtil.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/java/config/TestUtil.py b/java/config/TestUtil.py index c6b54f9558e..d686022c37b 100644 --- a/java/config/TestUtil.py +++ b/java/config/TestUtil.py @@ -85,6 +85,7 @@ for o, a in opts: # required. # javaCmd = "java" +jdk14 = False if protocol == "ssl": javaPipeIn, javaPipeOut = os.popen4("java -version") if not javaPipeIn or not javaPipeOut: @@ -104,6 +105,7 @@ if protocol == "ssl": # we direct the JVM to use /dev/urandom instead of its default. # javaCmd = "java -Djava.security.egd=file:/dev/urandom" + jdk14 = True javaPipeIn.close() javaPipeOut.close() |