diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-09-09 17:10:12 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-09-09 17:10:12 +0200 |
commit | f9c5bb94278c38e64ebabfb9a81019d0862b7374 (patch) | |
tree | faadaad68b9153432a2ff7757ab60e4e942db5d8 /scripts/TestUtil.py | |
parent | Fixed ICE-7320 - C++ thread pool and event handler leak (diff) | |
download | ice-f9c5bb94278c38e64ebabfb9a81019d0862b7374.tar.bz2 ice-f9c5bb94278c38e64ebabfb9a81019d0862b7374.tar.xz ice-f9c5bb94278c38e64ebabfb9a81019d0862b7374.zip |
Minor cleanup to TestUtil.py
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index 991e4fda22a..9c060510f47 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -39,7 +39,6 @@ serverTraceFilters = [] javaHome = os.environ.get("JAVA_HOME", "") javaCmd = '"%s"' % os.path.join(javaHome, "bin", "java") if javaHome else "java" -javaLibraryPath = None valgrind = False # Set to True to use valgrind for C++ executables. appverifier = False # Set to True to use appverifier for C++ executables, This is windows only feature @@ -1237,8 +1236,6 @@ def getCommandLine(exe, config, options = "", interpreterOptions = "", cfgName = output.write("-d64 ") if not config.ipv6: output.write("-Djava.net.preferIPv4Stack=true ") - if javaLibraryPath: - output.write("-Djava.library.path=" + javaLibraryPath) if interpreterOptions: output.write(" " + interpreterOptions) output.write(" " + exe + " ") @@ -1967,9 +1964,6 @@ def getTestEnv(lang, testdir): addPathToEnv("NODE_PATH", os.path.join(getIceDir("js", testdir), "src"), env) if isWin32(): - if lang == "java" and javaLibraryPath: - addPathToEnv("PATH", javaLibraryPath, env) - if lang == "csharp" and not iceHome: pkgdir = os.path.join(getIceDir("cpp"), "msbuild", "packages") pkgsubdir = os.path.join("build", "native", "bin", "x64", "Release") @@ -2653,7 +2647,3 @@ def getTestExecutable(name, baseDir = os.getcwd()): def setTestToplevel(path): global testToplevel testToplevel = path - -def setJavaLibraryPath(path): - global javaLibraryPath - javaLibraryPath = path |