]> granicus.if.org Git - python/commitdiff
Some more size-estimate fixes, for large-list-tests.
authorThomas Wouters <thomas@python.org>
Thu, 27 Apr 2006 13:46:59 +0000 (13:46 +0000)
committerThomas Wouters <thomas@python.org>
Thu, 27 Apr 2006 13:46:59 +0000 (13:46 +0000)
Lib/test/test_bigmem.py

index 1d610e57e6ab314455396ca1e5854217142c577e..99297cfd6431bb8c6ac6102db86d499795bb3ddc 100644 (file)
@@ -703,11 +703,11 @@ class ListTest(unittest.TestCase):
         self.failUnless(l[0] is l[-1])\r
         self.failUnless(l[size - 1] is l[size + 1])\r
 \r
-    @bigmemtest(minsize=_2G // 2 + 2, memuse=8)\r
+    @bigmemtest(minsize=_2G // 2 + 2, memuse=24)\r
     def test_inplace_concat_small(self, size):\r
         return self.basic_test_inplace_concat(size)\r
 \r
-    @bigmemtest(minsize=_2G + 2, memuse=8)\r
+    @bigmemtest(minsize=_2G + 2, memuse=24)\r
     def test_inplace_concat_large(self, size):\r
         return self.basic_test_inplace_concat(size)\r
 \r