diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-01-05 17:50:47 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-01-05 17:50:47 +0100 |
commit | 486ebe5c7c2d768b884ae85c4fea2c692d0b4f29 (patch) | |
tree | a6b15265690e110370e6f1036680ed068d5cd3c7 /scripts/LocalDriver.py | |
parent | Fixed macOS PHP testing bug when running against binary distribution (diff) | |
download | ice-486ebe5c7c2d768b884ae85c4fea2c692d0b4f29.tar.bz2 ice-486ebe5c7c2d768b884ae85c4fea2c692d0b4f29.tar.xz ice-486ebe5c7c2d768b884ae85c4fea2c692d0b4f29.zip |
Fixed ICE-7478 - concurrent file access
Diffstat (limited to 'scripts/LocalDriver.py')
-rw-r--r-- | scripts/LocalDriver.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/LocalDriver.py b/scripts/LocalDriver.py index b3d59be6d7e..3219529b406 100644 --- a/scripts/LocalDriver.py +++ b/scripts/LocalDriver.py @@ -58,6 +58,8 @@ class Executor: raise except: pass + finally: + current.destroy() results.put((result, mainThread)) if not result.isSuccess() and not self.continueOnFailure: with self.lock: self.failure = True |