From 86b8ed7a65febff2231fa99f5bba65ae234a685a Mon Sep 17 00:00:00 2001 From: Benoit Foucher Date: Thu, 11 Jun 2015 18:37:51 +0200 Subject: Fixed test PATH issue on Windows (ICE-6591) --- scripts/TestUtil.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts/TestUtil.py') diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index 723ffe24b38..5342cad411f 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -1006,7 +1006,7 @@ def getCommandLineProperties(exe, config): # all test drivers. # components = ["--Ice.NullHandleAbort=1", "--Ice.Warn.Connections=1"] - + if config.lang == "cpp": components.append("--Ice.CollectObjects=1") @@ -1107,7 +1107,7 @@ def getCommandLine(exe, config, options = "", interpreterOptions = ""): output.write("mono --debug '%s.exe' " % exe) elif config.lang == "ruby" and config.type == "client": # - # If running with a binary distribution ensure rubygems + # If running with a binary distribution ensure rubygems # are enabled # if iceHome: @@ -1883,7 +1883,7 @@ def getTestEnv(lang, testdir): # if isWin32(): if lang == "java": - addLdPath(os.path.join(getIceDir("cpp"), "bin"), env) # Always add bin for db53_vc100.dll + addLdPath(os.path.join(getIceDir("cpp"), "bin", "x64" if x64 else ""), env) # Add bin for db53_vc100.dll addLdPath(getCppLibDir(lang), env) elif lang in ["python", "ruby", "php", "js", "objective-c"]: addLdPath(getCppLibDir(lang), env) -- cgit v1.2.3