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 2010/06/18 20:35:44 UTC

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

Author: hwright
Date: Fri Jun 18 18:35:44 2010
New Revision: 956085

URL: http://svn.apache.org/viewvc?rev=956085&view=rev
Log:
* build/run_tests.py
  (_run_py_test): Instead of dieing, reraise the exception if we have trouble
    importing the test, in the hopes that the exception will give us better
    debugging information.

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=956085&r1=956084&r2=956085&view=diff
==============================================================================
--- subversion/trunk/build/run_tests.py (original)
+++ subversion/trunk/build/run_tests.py Fri Jun 18 18:35:44 2010
@@ -266,7 +266,7 @@ class TestHarness:
                                  ('.py', 'U', imp.PY_SOURCE))
     except:
       print('Don\'t know what to do about ' + progbase)
-      sys.exit(1)
+      raise
 
     import svntest.main