File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 3838 check_disallow_instantiation )
3939from test .support import (TestFailed ,
4040 run_with_locale , cpython_only ,
41- darwin_malloc_err_warning , is_emscripten )
41+ darwin_malloc_err_warning , is_emscripten ,
42+ skip_on_s390x )
4243from test .support .import_helper import import_fresh_module
4344from test .support import threading_helper
4445from test .support import warnings_helper
@@ -5650,6 +5651,9 @@ def __abs__(self):
56505651 @unittest .skipIf (check_sanitizer (address = True , memory = True ),
56515652 "ASAN/MSAN sanitizer defaults to crashing "
56525653 "instead of returning NULL for malloc failure." )
5654+ # gh-114331: The test allocates 784 271 641 GiB and mimalloc does not fail
5655+ # to allocate it when using mimalloc on s390x.
5656+ @skip_on_s390x
56535657 def test_maxcontext_exact_arith (self ):
56545658
56555659 # Make sure that exact operations do not raise MemoryError due
You can’t perform that action at this time.
0 commit comments