From 9f99d705138ddbea874ab41adc52becc7d9a02d5 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Sun, 20 Apr 2008 01:22:30 +0000 Subject: [PATCH] Report additional diagnostic information in test_math, to help track down debian-alpha buildbot failure. --- Lib/test/test_math.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py index 0d35130e60..4a54a6ed9e 100644 --- a/Lib/test/test_math.py +++ b/Lib/test/test_math.py @@ -672,7 +672,12 @@ class MathTests(unittest.TestCase): # no real versions of rect, polar continue func = getattr(math, fn) - result = func(ar) + try: + result = func(ar) + except ValueError: + message = ("Unexpected ValueError in " + + "test %s:%s(%r)\n" % (id, fn, ar)) + self.fail(message) self.ftest("%s:%s(%r)" % (id, fn, ar), result, er) def test_main(): -- 2.50.1