Report additional diagnostic information in

test_math, to help track down debian-alpha
buildbot failure.
This commit is contained in:
Mark Dickinson 2008-04-20 01:22:30 +00:00
parent 47a84aa978
commit 9f99d70513
1 changed files with 6 additions and 1 deletions

View File

@ -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():