diff options
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 e4bce8a1e20..799b1182f99 100644 --- a/scripts/LocalDriver.py +++ b/scripts/LocalDriver.py @@ -470,7 +470,7 @@ class LocalDriver(Driver): current.writeln("- Config: {0}".format(confStr)) if cross: current.writeln("- Mappings: {0}/{1}".format(client.getMapping(), server.getMapping())) - if self.all and not current.config.canRun(current): + if not current.config.canRun(current): current.writeln("skipped, not supported with this configuration") return @@ -491,7 +491,7 @@ class LocalDriver(Driver): confStr = str(current.config) if confStr: current.writeln("- Config: {0}".format(confStr)) - if self.all and not current.config.canRun(current): + if not current.config.canRun(current): current.writeln("skipped, not supported with this configuration") return |