summaryrefslogtreecommitdiff
path: root/scripts/TestUtil.py
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2016-08-16 14:47:17 -0400
committerJoe George <joe@zeroc.com>2016-08-16 14:47:17 -0400
commit5d8fb3eaaf35efb3d9183c67ac05067793f53d82 (patch)
tree2fcd6913390d8ffb941ce8e66f00c179fad2b5e4 /scripts/TestUtil.py
parentFix ICE-7247 (diff)
downloadice-5d8fb3eaaf35efb3d9183c67ac05067793f53d82.tar.bz2
ice-5d8fb3eaaf35efb3d9183c67ac05067793f53d82.tar.xz
ice-5d8fb3eaaf35efb3d9183c67ac05067793f53d82.zip
Fix PHP path in TestUtil
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-xscripts/TestUtil.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py
index b2a2524f77a..27af43dca48 100755
--- a/scripts/TestUtil.py
+++ b/scripts/TestUtil.py
@@ -1905,7 +1905,7 @@ def getTestEnv(lang, testdir):
# DB CLASSPATH, in Windows db.jar come from Ice home or
# from Third Party Home
#
- if lang in ["cpp", "java", "csharp", "python", "ruby", "js"]:
+ if lang in ["cpp", "java", "csharp", "python", "ruby", "js", "php"]:
if isWin32():
if iceHome:
addClasspath(os.path.join(getIceDir("java", testdir), "lib", "db.jar"), env)
@@ -1978,7 +1978,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":