summaryrefslogtreecommitdiff
path: root/scripts/TestUtil.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-xscripts/TestUtil.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py
index 38841895312..c105967412d 100755
--- a/scripts/TestUtil.py
+++ b/scripts/TestUtil.py
@@ -946,9 +946,12 @@ if isWin32():
sslConfigTree["python"] = sslConfigTree["cpp"]
sslConfigTree["ruby"] = sslConfigTree["cpp"]
-sslConfigTree["php"] = sslConfigTree["cpp"]
+sslConfigTree["php"] = sslConfigTree["cpp"].copy()
sslConfigTree["objective-c"] = sslConfigTree["cpp"]
+if isUbuntu():
+ sslConfigTree["php"]["client"] += " --IceSSL.InitOpenSSL=0"
+
def getDefaultMapping():
"""Try to guess the language mapping from the current path"""
here = os.getcwd().split(os.sep)
@@ -1931,7 +1934,7 @@ def getTestEnv(lang, testdir):
elif isAIX():
addLdPath(getCppLibDir(lang), env)
elif lang in ["python", "ruby", "php", "js", "objective-c"]:
- # C++ binaries use rpath $ORIGIN or similar to find the Ice libraries
+ # C++ binaries use rpath $ORIGIN or similar to find the Ice libraries
addLdPath(getCppLibDir(lang), env)
if lang == "java":