diff options
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() |