From 14f6c18b6250b66777b6e46003c5f37ef6327890 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Mon, 16 Jul 2001 18:51:32 +0000 Subject: [PATCH] Give more useful information about a failing PyUnit-style test. --- Lib/test/test_support.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 88a3c5e47f6..3d5c783644f 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])