diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-12-07 12:57:59 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-12-07 12:57:59 +0100 |
commit | 549b0ca81d13c2fad2c33a99ad1f7b7d373b25ad (patch) | |
tree | ce873121daeaa81bf56ce53b7e22cc19a65b572a /scripts/LocalDriver.py | |
parent | Another fix for ICE-7458 - regenerated Scanner.l on xenial64 (diff) | |
download | ice-549b0ca81d13c2fad2c33a99ad1f7b7d373b25ad.tar.bz2 ice-549b0ca81d13c2fad2c33a99ad1f7b7d373b25ad.tar.xz ice-549b0ca81d13c2fad2c33a99ad1f7b7d373b25ad.zip |
Fixed Windows cross testing failure
Diffstat (limited to 'scripts/LocalDriver.py')
-rw-r--r-- | scripts/LocalDriver.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/LocalDriver.py b/scripts/LocalDriver.py index ae64d1f1bfd..d1fd80e1f8f 100644 --- a/scripts/LocalDriver.py +++ b/scripts/LocalDriver.py @@ -425,6 +425,9 @@ class LocalDriver(Driver): for conf in current.config.getAll(current, testcase) if self.all else [current.config]: current.config = conf testcase.run(current) + except: + print(traceback.format_exc()) + raise finally: current.config = config success = True |