mirror of
https://github.com/python/cpython.git
synced 2025-09-19 15:10:58 +00:00
Fix memory error in test_ucn.
unicode-escape decoder requires memory for result corresponding to input size. Fixes test for issue #16335.
This commit is contained in:
commit
85da624ebe
1 changed files with 6 additions and 5 deletions
|
@ -222,13 +222,14 @@ class UnicodeNamesTest(unittest.TestCase):
|
||||||
# very very long bogus character name
|
# very very long bogus character name
|
||||||
try:
|
try:
|
||||||
x = b'\\N{SPACE' + b'x' * (_testcapi.UINT_MAX + 1) + b'}'
|
x = b'\\N{SPACE' + b'x' * (_testcapi.UINT_MAX + 1) + b'}'
|
||||||
except MemoryError:
|
self.assertEqual(len(x), len(b'\\N{SPACE}') +
|
||||||
raise unittest.SkipTest("not enough memory")
|
(_testcapi.UINT_MAX + 1))
|
||||||
self.assertEqual(len(x), len(b'\\N{SPACE}') + (_testcapi.UINT_MAX + 1))
|
|
||||||
self.assertRaisesRegex(UnicodeError,
|
self.assertRaisesRegex(UnicodeError,
|
||||||
'unknown Unicode character name',
|
'unknown Unicode character name',
|
||||||
x.decode, 'unicode-escape'
|
x.decode, 'unicode-escape'
|
||||||
)
|
)
|
||||||
|
except MemoryError:
|
||||||
|
raise unittest.SkipTest("not enough memory")
|
||||||
|
|
||||||
|
|
||||||
def test_main():
|
def test_main():
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue