diff options
author | Bernard Normier <bernard@zeroc.com> | 2015-06-08 17:27:39 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2015-06-08 17:27:39 -0400 |
commit | a8bd11eeca773473432fde72f919148f5217daa4 (patch) | |
tree | a09ea0281976e8357eead1147185b01774ef4b78 /java/test | |
parent | Fix python build to work with python3 (diff) | |
download | ice-a8bd11eeca773473432fde72f919148f5217daa4.tar.bz2 ice-a8bd11eeca773473432fde72f919148f5217daa4.tar.xz ice-a8bd11eeca773473432fde72f919148f5217daa4.zip |
Removed work-around for JRE 8 bug, now fixed
Diffstat (limited to 'java/test')
-rwxr-xr-x | java/test/src/main/java/test/Freeze/evictor/run.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/java/test/src/main/java/test/Freeze/evictor/run.py b/java/test/src/main/java/test/Freeze/evictor/run.py index bd5e0dbb6b6..f54a6201791 100755 --- a/java/test/src/main/java/test/Freeze/evictor/run.py +++ b/java/test/src/main/java/test/Freeze/evictor/run.py @@ -26,7 +26,4 @@ TestUtil.cleanDbDir(dbdir) testOptions = ' --Freeze.Warn.Deadlocks=0 --Freeze.DbEnv.db.DbHome="%s/db" --Ice.Config="%s/config" ' % (os.getcwd(), os.getcwd()) -# -# BUGFIX: pass "-Xint" to Java JVM to workaround a bug in Java 1.8 64 bit JVM -# -TestUtil.clientServerTest(testOptions, testOptions, interpreterOptions = "-Xint") +TestUtil.clientServerTest(testOptions, testOptions) |