From: Christian Heimes Date: Mon, 4 Feb 2008 18:48:38 +0000 (+0000) Subject: Increase debugging to investige failing tests on some build bots X-Git-Tag: v2.6a1~276 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f4033ab245582999fe19423edc5ffa42f7ea505f;p=python Increase debugging to investige failing tests on some build bots --- diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index a01ea3e9b4..012611d40b 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -379,6 +379,9 @@ class SysModuleTest(unittest.TestCase): del floats # should free more than 200 blocks each r = sys._compact_freelists() + self.assert_(r[0][1] > 200, r[0][1]) + self.assert_(r[1][2] > 200, r[1][1]) + self.assert_(r[0][2] > 200, r[0][2]) self.assert_(r[1][2] > 200, r[1][2])