diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-12-07 20:04:21 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-12-07 20:04:21 +0100 |
commit | 664cf0780a68461292632e9461474191bfd75125 (patch) | |
tree | cd277a2ad2f6f7b54f8840f88f947158fcfb1d1e /scripts/LocalDriver.py | |
parent | Fixed test scripts to allow running JS tests even when --protocol is set (diff) | |
download | ice-664cf0780a68461292632e9461474191bfd75125.tar.bz2 ice-664cf0780a68461292632e9461474191bfd75125.tar.xz ice-664cf0780a68461292632e9461474191bfd75125.zip |
Additional fix for automated test failures
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 |