[Python-checkins] r45757 - python/trunk/Lib/test/test_bigmem.py

thomas.wouters python-checkins at python.org
Thu Apr 27 15:46:59 CEST 2006


Author: thomas.wouters
Date: Thu Apr 27 15:46:59 2006
New Revision: 45757

Modified:
   python/trunk/Lib/test/test_bigmem.py
Log:

Some more size-estimate fixes, for large-list-tests.



Modified: python/trunk/Lib/test/test_bigmem.py
==============================================================================
--- python/trunk/Lib/test/test_bigmem.py	(original)
+++ python/trunk/Lib/test/test_bigmem.py	Thu Apr 27 15:46:59 2006
@@ -703,11 +703,11 @@
         self.failUnless(l[0] is l[-1])
         self.failUnless(l[size - 1] is l[size + 1])
 
-    @bigmemtest(minsize=_2G // 2 + 2, memuse=8)
+    @bigmemtest(minsize=_2G // 2 + 2, memuse=24)
     def test_inplace_concat_small(self, size):
         return self.basic_test_inplace_concat(size)
 
-    @bigmemtest(minsize=_2G + 2, memuse=8)
+    @bigmemtest(minsize=_2G + 2, memuse=24)
     def test_inplace_concat_large(self, size):
         return self.basic_test_inplace_concat(size)
 


More information about the Python-checkins mailing list