[Python-checkins] r60568 - python/trunk/Lib/test/test_sys.py

christian.heimes python-checkins at python.org
Mon Feb 4 19:48:38 CET 2008


Author: christian.heimes
Date: Mon Feb  4 19:48:38 2008
New Revision: 60568

Modified:
   python/trunk/Lib/test/test_sys.py
Log:
Increase debugging to investige failing tests on some build bots

Modified: python/trunk/Lib/test/test_sys.py
==============================================================================
--- python/trunk/Lib/test/test_sys.py	(original)
+++ python/trunk/Lib/test/test_sys.py	Mon Feb  4 19:48:38 2008
@@ -379,6 +379,9 @@
         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])
 


More information about the Python-checkins mailing list