summaryrefslogtreecommitdiff
path: root/scripts/TestUtil.py
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2016-08-24 11:36:54 -0400
committerJoe George <joe@zeroc.com>2016-08-24 11:36:54 -0400
commit2c6b0696413edd47e3b72de7052a6d4ba5f14821 (patch)
treebf595b7729b4359e97af50a0f2eb7daa2d0814b3 /scripts/TestUtil.py
parentFix ICE-7295 - Fix php build (diff)
downloadice-2c6b0696413edd47e3b72de7052a6d4ba5f14821.tar.bz2
ice-2c6b0696413edd47e3b72de7052a6d4ba5f14821.tar.xz
ice-2c6b0696413edd47e3b72de7052a6d4ba5f14821.zip
Fix TestUtil es5 test path
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-xscripts/TestUtil.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py
index f6c34e4a185..88d8604d0dd 100755
--- a/scripts/TestUtil.py
+++ b/scripts/TestUtil.py
@@ -2299,6 +2299,9 @@ def runTests(start, expanded, num = 0, script = False):
dir = os.path.join(testToplevel, "java", "test", "src", "main", i)
elif i.find(os.path.join("java-compat","test")) != -1:
dir = os.path.join(testToplevel, "java-compat", "test", "src", "main", i.replace('-compat',''))
+ elif i.find(os.path.join("js","test")) != -1:
+ dir = os.path.join(testToplevel, i.replace("test/Ice/", "test/Ice/es5/")
+ .replace("test/Glacier2/", "test/Glacier2/es5/"))
else:
dir = os.path.join(testToplevel, i)
dir = os.path.normpath(dir)