summaryrefslogtreecommitdiff
path: root/scripts/LocalDriver.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/LocalDriver.py')
-rw-r--r--scripts/LocalDriver.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/LocalDriver.py b/scripts/LocalDriver.py
index 3999c56263c..d779fce009f 100644
--- a/scripts/LocalDriver.py
+++ b/scripts/LocalDriver.py
@@ -410,7 +410,7 @@ class LocalDriver(Driver):
#
# Sort the test suites to run tests in the following order.
#
- runOrder = component.getRunOrder()
+ runOrder = self.component.getRunOrder()
def testsuiteKey(testsuite):
for k in runOrder:
if testsuite.getId().startswith(k + '/'):
@@ -423,7 +423,7 @@ class LocalDriver(Driver):
continue
if testsuite.getId() == "Ice/echo":
continue
- elif (self.cross or self.allCross) and not component.isCross(testsuite.getId()):
+ elif (self.cross or self.allCross) and not self.component.isCross(testsuite.getId()):
continue
elif isinstance(self.runner, RemoteTestCaseRunner) and not testsuite.isMultiHost():
continue