diff options
author | Joe George <joe@zeroc.com> | 2014-11-10 16:16:01 -0500 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2014-11-10 16:18:04 -0500 |
commit | f1de3652d8394ad3cd76b4986d0fc1c6e8d40524 (patch) | |
tree | dd52040544acd72fd9d6a9a8f31323a47786b318 /scripts/TestUtil.py | |
parent | Minor cleanup of slice2freezej task configurations (diff) | |
download | ice-f1de3652d8394ad3cd76b4986d0fc1c6e8d40524.tar.bz2 ice-f1de3652d8394ad3cd76b4986d0fc1c6e8d40524.tar.xz ice-f1de3652d8394ad3cd76b4986d0fc1c6e8d40524.zip |
ICE-5860 - Fix IceJS browser tests causing WatchDog thread to complain.
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index 450c1805989..5091b00f52b 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -1587,13 +1587,13 @@ def getServiceDir(): serviceDir = "C:\\Program Files\ZeroC\Ice-" + str(getIceVersion()) + "\\bin" return serviceDir -iceJARs = ["ice", +iceJARs = ["ice", "glacier2", - "freeze", - "icebox", - "icestorm", - "icegrid", - "icepatch2", + "freeze", + "icebox", + "icestorm", + "icegrid", + "icepatch2", "icediscovery"] def getTestEnv(lang, testdir): @@ -1611,7 +1611,7 @@ def getTestEnv(lang, testdir): addClasspath(os.path.join(toplevel, "java", "lib", "test.jar"), env) jarSuffix = "-" + getIceVersion() + ".jar" - + # # If Ice is installed from RPMs, just set the CLASSPATH for Java. # @@ -1697,6 +1697,12 @@ def getTestName(): # The crossTests list is in UNIX format. return os.path.join(*here).replace(os.sep, '/') +def stopWatchDog(): + global watchDog + watchDog.stop() + watchDog.join() + watchDog = None + def joindog(dog): dog.stop() dog.join() |