diff options
author | Joe George <joe@zeroc.com> | 2016-02-12 11:10:28 -0500 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2016-02-12 11:10:28 -0500 |
commit | 70fcaab8e9566edd7d749b1f6e3147e0efdbe94d (patch) | |
tree | 6f043cce81cf206a9ac7f1ff2fc4349a80aa23c3 /scripts/TestUtil.py | |
parent | minor fixes to stream classes; restoring test/Ice/stream (diff) | |
download | ice-70fcaab8e9566edd7d749b1f6e3147e0efdbe94d.tar.bz2 ice-70fcaab8e9566edd7d749b1f6e3147e0efdbe94d.tar.xz ice-70fcaab8e9566edd7d749b1f6e3147e0efdbe94d.zip |
ICE-6973 - Add support for PHP 7
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index d58e3f8c5b5..8be3a508f2e 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -1907,7 +1907,7 @@ def getTestEnv(lang, testdir): addPathToEnv("NODE_PATH", os.path.join(getIceDir("js", testdir), "src"), env) - if isWin32() and lang in ["cpp", "java", "csharp", "python", "ruby"]: + if isWin32() and lang in ["cpp", "java", "csharp", "python", "ruby", "php"]: if not iceHome: mode = getBuildMode(os.path.join(getIceDir("cpp"), "bin")) configuration = "Debug" if mode == "debug" else "Release" |