summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-06-15 16:33:48 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-06-15 16:33:48 (GMT)
commit884fb1c83103576f7c29a815a733b0b2466ceec5 (patch)
treea0e54e8b266ecbba5330b5d459d427960a5d1d84
parent771d98d69490554c5a5f2d91931c7e8155b0d22c (diff)
downloadcpython-884fb1c83103576f7c29a815a733b0b2466ceec5.zip
cpython-884fb1c83103576f7c29a815a733b0b2466ceec5.tar.gz
cpython-884fb1c83103576f7c29a815a733b0b2466ceec5.tar.bz2
Skip test_bigmem.test_unicode_repr_oflw, since it crashes (issue #14904).
-rw-r--r--Lib/test/test_bigmem.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_bigmem.py b/Lib/test/test_bigmem.py
index 2adae4e..c41c373 100644
--- a/Lib/test/test_bigmem.py
+++ b/Lib/test/test_bigmem.py
@@ -124,6 +124,7 @@ class StrTest(unittest.TestCase):
@precisionbigmemtest(size=_4G // 5, memuse=6+2)
def test_unicode_repr_oflw(self, size):
+ self.skipTest("test crashes - see issue #14904")
try:
s = u"\uAAAA"*size
r = repr(s)