You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by hw...@apache.org on 2011/08/05 03:51:18 UTC

svn commit: r1154070 - /subversion/trunk/build/run_tests.py

Author: hwright
Date: Fri Aug  5 01:51:17 2011
New Revision: 1154070

URL: http://svn.apache.org/viewvc?rev=1154070&view=rev
Log:
Followup to r1154060 by catching any test suite exception, not just terminated-
by-signal.

* build/run_tests.py
  (_run_py_test): Catch any testsuite exception.

Modified:
    subversion/trunk/build/run_tests.py

Modified: subversion/trunk/build/run_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/build/run_tests.py?rev=1154070&r1=1154069&r2=1154070&view=diff
==============================================================================
--- subversion/trunk/build/run_tests.py (original)
+++ subversion/trunk/build/run_tests.py Fri Aug  5 01:51:17 2011
@@ -459,7 +459,7 @@ class TestHarness:
                                           test_name=progbase,
                                           progress_func=prog_f,
                                           test_selection=test_selection)
-    except svntest.main.SVNProcessTerminatedBySignal:
+    except svntest.Failure:
       if self.log:
         os.write(old_stdout, '.' * dot_count)
       failed = True