diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-06-20 12:38:43 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-06-20 12:38:43 +0200 |
commit | 89fcb61132c73afa2f808c54d6406f0073d8735a (patch) | |
tree | 498e3113020a668a51a0f782fe342db091713335 /scripts/Controller.py | |
parent | Print unexpected exceptions on C# Ice/dispatcher (diff) | |
download | ice-89fcb61132c73afa2f808c54d6406f0073d8735a.tar.bz2 ice-89fcb61132c73afa2f808c54d6406f0073d8735a.tar.xz ice-89fcb61132c73afa2f808c54d6406f0073d8735a.zip |
No longer kill tests on timeout
Diffstat (limited to 'scripts/Controller.py')
-rwxr-xr-x | scripts/Controller.py | 3 |
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() |