Kaydet (Commit) e36a8e82 authored tarafından Jack Jansen's avatar Jack Jansen

Disable the test for importing very long lists for MacPython: it triggers

an out-of-memory condition (and a hang on OSX). Filed a bug report
(#571845) to make sure this is eventually fixed.
üst 473f46a8
...@@ -107,4 +107,5 @@ def test_module_with_large_stack(module): ...@@ -107,4 +107,5 @@ def test_module_with_large_stack(module):
if os.path.exists(fname): if os.path.exists(fname):
os.unlink(fname) os.unlink(fname)
test_module_with_large_stack('longlist') if sys.platform != 'mac':
test_module_with_large_stack('longlist')
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