From 8f6f42621a28f02424a8effd45a03a6496fcabad Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Tue, 19 Jan 2010 08:01:00 +0000 Subject: [PATCH] Add a pydebug mode only debug print to help debug the errors in http://www.python.org/dev/buildbot/all/builders/x86%20gentoo%20trunk/builds/5700/ Will be removed shortly. --- Lib/test/test_hashlib.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Lib/test/test_hashlib.py b/Lib/test/test_hashlib.py index b5fee5151a..6defa197cf 100644 --- a/Lib/test/test_hashlib.py +++ b/Lib/test/test_hashlib.py @@ -140,6 +140,10 @@ class HashLibTestCase(unittest.TestCase): # 2 is for hashlib.name(...) and hashlib.new(name, ...) self.assertGreaterEqual(len(constructors), 2) for hash_object_constructor in constructors: + if COMPILED_WITH_PYDEBUG: + # XXX(gps): This is temporary to debug a buildbot failure. + # http://www.python.org/dev/buildbot/all/builders/x86%20gentoo%20trunk/builds/5700/ + print "test_hashlib check calling", hash_object_constructor computed = hash_object_constructor(data).hexdigest() self.assertEqual( computed, digest, -- 2.40.0