diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-06-19 17:20:43 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-06-19 17:20:43 +0200 |
commit | 6fcd9c3fc413f2c3b16cf25c67bc759215cd6860 (patch) | |
tree | f97bf02c9ca270055d513d5e46ef87a2a462634e /scripts/LocalDriver.py | |
parent | import IceBridgeUtil (diff) | |
download | ice-6fcd9c3fc413f2c3b16cf25c67bc759215cd6860.tar.bz2 ice-6fcd9c3fc413f2c3b16cf25c67bc759215cd6860.tar.xz ice-6fcd9c3fc413f2c3b16cf25c67bc759215cd6860.zip |
Fixed ICE-8107 - cross testing no longer working
Diffstat (limited to 'scripts/LocalDriver.py')
-rw-r--r-- | scripts/LocalDriver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/LocalDriver.py b/scripts/LocalDriver.py index 0835c8aa192..cad6c5ee81a 100644 --- a/scripts/LocalDriver.py +++ b/scripts/LocalDriver.py @@ -36,7 +36,7 @@ class Executor: for cross in crossMappings: if cross: t = cross.findTestSuite(testsuite) - if t and t.isMainThreadOnly(): + if t and t.isMainThreadOnly(driver): mainThreadOnly = True break |