summaryrefslogtreecommitdiff
path: root/scripts/Controller.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2017-06-20 12:38:43 +0200
committerBenoit Foucher <benoit@zeroc.com>2017-06-20 12:38:43 +0200
commit89fcb61132c73afa2f808c54d6406f0073d8735a (patch)
tree498e3113020a668a51a0f782fe342db091713335 /scripts/Controller.py
parentPrint unexpected exceptions on C# Ice/dispatcher (diff)
downloadice-89fcb61132c73afa2f808c54d6406f0073d8735a.tar.bz2
ice-89fcb61132c73afa2f808c54d6406f0073d8735a.tar.xz
ice-89fcb61132c73afa2f808c54d6406f0073d8735a.zip
No longer kill tests on timeout
Diffstat (limited to 'scripts/Controller.py')
-rwxr-xr-xscripts/Controller.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/Controller.py b/scripts/Controller.py
index 2e8dda79b50..aa5ab422855 100755
--- a/scripts/Controller.py
+++ b/scripts/Controller.py
@@ -196,6 +196,9 @@ class ControllerDriver(Driver):
def isWorkerThread(self):
return True
+ def isInterrupted(self):
+ return False
+
Driver.add("controller", ControllerDriver, default=True)
runTests()