Commit e45dac4e authored by Serhiy Storchaka's avatar Serhiy Storchaka

Add bigmemtest decorator to test of issue #16335.

parent 3b40b712
......@@ -144,18 +144,17 @@ class UnicodeNamesTest(unittest.TestCase):
@unittest.skipUnless(_testcapi.INT_MAX < _testcapi.PY_SSIZE_T_MAX,
"needs UINT_MAX < SIZE_MAX")
def test_issue16335(self):
@support.bigmemtest(size=_testcapi.UINT_MAX + 1,
memuse=1 + 4 // len('\U00010000'), dry_run=False)
def test_issue16335(self, size):
# very very long bogus character name
try:
x = b'\\N{SPACE' + b'x' * (_testcapi.UINT_MAX + 1) + b'}'
self.assertEqual(len(x), len(b'\\N{SPACE}') +
(_testcapi.UINT_MAX + 1))
self.assertRaisesRegex(UnicodeError,
'unknown Unicode character name',
x.decode, 'unicode-escape'
)
except MemoryError:
raise unittest.SkipTest("not enough memory")
x = b'\\N{SPACE' + b'x' * (_testcapi.UINT_MAX + 1) + b'}'
self.assertEqual(len(x), len(b'\\N{SPACE}') +
(_testcapi.UINT_MAX + 1))
self.assertRaisesRegex(UnicodeError,
'unknown Unicode character name',
x.decode, 'unicode-escape'
)
def test_main():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment