Remove try/catch so that ctest blocks builds.

All blocking reasons for au test harness flakiness have been resolved.  Removing try/catch from ctest so that we propagate the correct error code upon exit.

Change-Id: Iee1f09ade37ac7a590c2dbf4ebb96985818f1882

BUG=chromium-os:10434
TEST=Ran ctest unittests.

Review URL: http://codereview.chromium.org/5971009
This commit is contained in:
Chris Sosa 2011-01-04 12:17:17 -08:00
parent 70311cdfdd
commit 50744ba57c

View File

@ -307,9 +307,5 @@ def main():
if __name__ == '__main__':
try:
main()
except Exception:
print "Got exception."
traceback.print_exc(file=sys.stdout)
main()