From: Fred Drake Date: Mon, 16 Jul 2001 18:51:32 +0000 (+0000) Subject: Give more useful information about a failing PyUnit-style test. X-Git-Tag: v2.2a3~1133 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=14f6c18b6250b66777b6e46003c5f37ef6327890;p=thirdparty%2FPython%2Fcpython.git Give more useful information about a failing PyUnit-style test. --- diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 88a3c5e47f6c..3d5c783644f6 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -135,5 +135,14 @@ def run_unittest(testclass): suite = unittest.makeSuite(testclass) result = runner.run(suite) if not result.wasSuccessful(): - raise TestFailed("errors occurred in %s.%s" - % (testclass.__module__, testclass.__name__)) + if len(result.errors) == 1 and not result.failures: + err = result.errors[0][1] + elif len(result.failures) == 1 and not result.errors: + err = result.failures[0][1] + else: + raise TestFailed("errors occurred in %s.%s" + % (testclass.__module__, testclass.__name__)) + if err[0] is AssertionError: + raise TestFailed(str(err[1])) + else: + raise TestFailed("%s: %s" % err[:2])