diff options
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() |