diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-25 08:13:37 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-25 08:13:37 (GMT) |
commit | 5070c27a8f1ccc887c5cf60fd9993f0df3234f17 (patch) | |
tree | 38d0dee5f4666dfe064a49f9f87fbad93125c860 /Lib/test/test_ucn.py | |
parent | a3030546d817e3aee345815fc9826d9ee710f005 (diff) | |
parent | 2f2dd992a3b73ee320834916e678be7762c06383 (diff) | |
download | cpython-5070c27a8f1ccc887c5cf60fd9993f0df3234f17.zip cpython-5070c27a8f1ccc887c5cf60fd9993f0df3234f17.tar.gz cpython-5070c27a8f1ccc887c5cf60fd9993f0df3234f17.tar.bz2 |
Increase the memory limit in the test for issue #16335.
Diffstat (limited to 'Lib/test/test_ucn.py')
-rw-r--r-- | Lib/test/test_ucn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_ucn.py b/Lib/test/test_ucn.py index f949761..2e63745 100644 --- a/Lib/test/test_ucn.py +++ b/Lib/test/test_ucn.py @@ -219,7 +219,7 @@ class UnicodeNamesTest(unittest.TestCase): @unittest.skipUnless(_testcapi.INT_MAX < _testcapi.PY_SSIZE_T_MAX, "needs UINT_MAX < SIZE_MAX") @support.bigmemtest(size=_testcapi.UINT_MAX + 1, - memuse=1 + 1, dry_run=False) + memuse=2 + 1, dry_run=False) def test_issue16335(self, size): # very very long bogus character name x = b'\\N{SPACE' + b'x' * (_testcapi.UINT_MAX + 1) + b'}' |