diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-11-29 14:03:47 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-11-29 14:03:47 +0100 |
commit | 3f86980ba3c654c90f9cb7230b6c9855e6df8b51 (patch) | |
tree | 8ae66110804889889239f651b9309c1915206400 /scripts/LocalDriver.py | |
parent | IceGrid/noRestartUpdate failure, print out the reason of the failure (diff) | |
download | ice-3f86980ba3c654c90f9cb7230b6c9855e6df8b51.tar.bz2 ice-3f86980ba3c654c90f9cb7230b6c9855e6df8b51.tar.xz ice-3f86980ba3c654c90f9cb7230b6c9855e6df8b51.zip |
Fixed Ice/properties test failure
Diffstat (limited to 'scripts/LocalDriver.py')
-rw-r--r-- | scripts/LocalDriver.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/LocalDriver.py b/scripts/LocalDriver.py index 6dc18ba369a..e71b7b5facb 100644 --- a/scripts/LocalDriver.py +++ b/scripts/LocalDriver.py @@ -344,11 +344,11 @@ class LocalDriver(Driver): else: self.runner = TestCaseRunner() - def run(self, mappings): + def run(self, mappings, testSuiteIds): while True: executor = Executor(self.threadlocal, self.workers, self.continueOnFailure) for mapping in mappings: - testsuites = mapping.getTestSuites() + testsuites = mapping.getTestSuites(testSuiteIds) # # Sort the test suites to run tests in the following order. |