diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-25 08:13:57 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-25 08:13:57 (GMT) |
commit | a8e6af6ac35885103d0dbf6a8a4ffd682308eb2f (patch) | |
tree | 1b7df72c630731357f039d0f2649f87c555f2183 /Lib/test/test_ucn.py | |
parent | 6c1fed578b02e0189798f2980b7bbf8673da1239 (diff) | |
parent | 5070c27a8f1ccc887c5cf60fd9993f0df3234f17 (diff) | |
download | cpython-a8e6af6ac35885103d0dbf6a8a4ffd682308eb2f.zip cpython-a8e6af6ac35885103d0dbf6a8a4ffd682308eb2f.tar.gz cpython-a8e6af6ac35885103d0dbf6a8a4ffd682308eb2f.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 dc3d8de..59bde74 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'}' |