From: Thomas Wouters Date: Thu, 27 Apr 2006 13:46:59 +0000 (+0000) Subject: Some more size-estimate fixes, for large-list-tests. X-Git-Tag: v2.5b1~790 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2574f5cd8bfa7d504706f1f481ede5748a64e9f3;p=python Some more size-estimate fixes, for large-list-tests. --- diff --git a/Lib/test/test_bigmem.py b/Lib/test/test_bigmem.py index 1d610e57e6..99297cfd64 100644 --- a/Lib/test/test_bigmem.py +++ b/Lib/test/test_bigmem.py @@ -703,11 +703,11 @@ class ListTest(unittest.TestCase): 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)