commit | d895fcb24c236c8b4737220e6f15c3c0f84e2205 | [log] [tgz] |
---|---|---|
author | Shudong Zhou <shudongzhou@gmail.com> | Wed Aug 01 19:09:55 2012 -0700 |
committer | Shudong Zhou <shudongzhou@gmail.com> | Wed Aug 01 19:10:24 2012 -0700 |
tree | abf14ccc1c552e94a61109dd720599434b100501 | |
parent | 941d1dd39104433aafb4b2942871daec59bb2c79 [diff] [blame] |
oft frequently hangs on error exit
diff --git a/tests/oft b/tests/oft index 85a50fb..4b115ba 100755 --- a/tests/oft +++ b/tests/oft
@@ -583,6 +583,7 @@ print("Skipped " + str(testutils.skipped_test_count) + ts) logging.info("*** TEST RUN END : " + time.asctime()) if result.failures or result.errors: - exit(1) + # exit(1) hangs sometimes + os._exit(1) if testutils.skipped_test_count > 0 and config["fail_skipped"]: - exit(1) + os._exit(1)