]> granicus.if.org Git - python/commitdiff
Split the bigmem re test in two separate tests with different memory requirements.
authorAntoine Pitrou <solipsis@pitrou.net>
Mon, 3 Dec 2012 19:53:12 +0000 (20:53 +0100)
committerAntoine Pitrou <solipsis@pitrou.net>
Mon, 3 Dec 2012 19:53:12 +0000 (20:53 +0100)
Lib/test/test_re.py

index befe0e8b98e518398f0be173c2b1636c64d19617..f01fb9683626e7892b235ac98bdb1a6ae394d30b 100644 (file)
@@ -7,6 +7,7 @@ import string
 import traceback
 from weakref import proxy
 
+
 # Misc tests from Tim Peters' re.doc
 
 # WARNING: Don't change details in these tests if you don't know
@@ -820,10 +821,17 @@ class ReTests(unittest.TestCase):
         # Test behaviour when not given a string or pattern as parameter
         self.assertRaises(TypeError, re.compile, 0)
 
+    @precisionbigmemtest(size=_2G, memuse=1)
+    def test_large_search(self, size):
+        # Issue #10182: indices were 32-bit-truncated.
+        s = 'a' * size
+        m = re.search('$', s)
+        self.assertIsNotNone(m)
+
     # The huge memuse is because of re.sub() using a list and a join()
     # to create the replacement result.
-    @precisionbigmemtest(size=_2G, memuse=20)
-    def test_large(self, size):
+    @precisionbigmemtest(size=_2G, memuse=16 + 2)
+    def test_large_subn(self, size):
         # Issue #10182: indices were 32-bit-truncated.
         s = 'a' * size
         m = re.search('$', s)