summaryrefslogtreecommitdiff
path: root/scripts/Util.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2016-11-25 14:32:42 +0100
committerBenoit Foucher <benoit@zeroc.com>2016-11-25 14:32:42 +0100
commit51ec576c246e3ed6438709bf1f7625dbbcb956c5 (patch)
tree70d3b9306bfc9114747458e759a4c0bc7e12b59d /scripts/Util.py
parentFixed added debug information to allTests.py (diff)
downloadice-51ec576c246e3ed6438709bf1f7625dbbcb956c5.tar.bz2
ice-51ec576c246e3ed6438709bf1f7625dbbcb956c5.tar.xz
ice-51ec576c246e3ed6438709bf1f7625dbbcb956c5.zip
Fixed allTests.py exit status
Diffstat (limited to 'scripts/Util.py')
-rw-r--r--scripts/Util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Util.py b/scripts/Util.py
index 17f88cd3771..6632b6c3f73 100644
--- a/scripts/Util.py
+++ b/scripts/Util.py
@@ -2103,7 +2103,7 @@ def runTests(mappings=None, drivers=None):
# Finally, run the test suites with the driver.
#
try:
- driver.run(mappings)
+ sys.exit(driver.run(mappings))
except KeyboardInterrupt:
pass
finally: