summaryrefslogtreecommitdiff
path: root/scripts/TestUtil.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2012-12-10 16:44:16 +0100
committerBenoit Foucher <benoit@zeroc.com>2012-12-10 16:44:16 +0100
commit5f692ac54ce36c315b605ea7756cb94c2ed35df7 (patch)
treecb8a46d2ad2879b4c6f800ffbf13d59ea8c236ec /scripts/TestUtil.py
parentFixed ICE-5102 - Add vc110 subdirto PATH for php/ruby demos (diff)
downloadice-5f692ac54ce36c315b605ea7756cb94c2ed35df7.tar.bz2
ice-5f692ac54ce36c315b605ea7756cb94c2ed35df7.tar.xz
ice-5f692ac54ce36c315b605ea7756cb94c2ed35df7.zip
ICE-5116 - Bumped watch dog timeout to 4 minutes
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 ac2e44c2a92..389a97f7d39 100755
--- a/scripts/TestUtil.py
+++ b/scripts/TestUtil.py
@@ -1530,13 +1530,13 @@ class WatchDog(threading.Thread):
try:
self._cv.acquire()
while True:
- self._cv.wait(180)
+ self._cv.wait(240)
if self._stopFlag:
break
if self._resetFlag:
self._resetFlag = False
else:
- print("\a*** %s Warning: Test has been inactive for 3 minutes and may be hung", \
+ print("\a*** %s Warning: Test has been inactive for 4 minutes and may be hung", \
time.strftime("%x %X"))
self._cv.release()
except: