File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 38
38
check_disallow_instantiation )
39
39
from test .support import (TestFailed ,
40
40
run_with_locale , cpython_only ,
41
- darwin_malloc_err_warning , is_emscripten )
41
+ darwin_malloc_err_warning , is_emscripten ,
42
+ skip_on_s390x )
42
43
from test .support .import_helper import import_fresh_module
43
44
from test .support import threading_helper
44
45
from test .support import warnings_helper
@@ -5650,6 +5651,9 @@ def __abs__(self):
5650
5651
@unittest .skipIf (check_sanitizer (address = True , memory = True ),
5651
5652
"ASAN/MSAN sanitizer defaults to crashing "
5652
5653
"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
5653
5657
def test_maxcontext_exact_arith (self ):
5654
5658
5655
5659
# Make sure that exact operations do not raise MemoryError due
You can’t perform that action at this time.
0 commit comments