Bug 808410 - Ensure retVal is set even when mochitest.cleanup did not generate an exception; r=ahal

This commit is contained in:
Ed Morley 2012-11-20 15:24:28 +00:00
parent 0798d964fd
commit 1963ebca09

View File

@ -533,7 +533,7 @@ def main():
mochitest.cleanup(None, options)
except:
pass
sys.exit(1)
retVal = 1
sys.exit(retVal)