diff options
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_re.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py index 82179b78c9..28944b1c78 100644 --- a/Lib/test/test_re.py +++ b/Lib/test/test_re.py @@ -949,10 +949,17 @@ class ReTests(unittest.TestCase): # Test behaviour when not given a string or pattern as parameter self.assertRaises(TypeError, re.compile, 0) + @bigmemtest(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. - @bigmemtest(size=_2G, memuse=20) - def test_large(self, size): + @bigmemtest(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) |