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 37
37
requires_legacy_unicode_capi , check_sanitizer )
38
38
from test .support import (TestFailed ,
39
39
run_with_locale , cpython_only ,
40
- darwin_malloc_err_warning , is_emscripten )
40
+ darwin_malloc_err_warning , is_emscripten ,
41
+ skip_on_s390x )
41
42
from test .support .import_helper import import_fresh_module
42
43
from test .support import threading_helper
43
44
from test .support import warnings_helper
@@ -5654,6 +5655,9 @@ def __abs__(self):
5654
5655
@unittest .skipIf (check_sanitizer (address = True , memory = True ),
5655
5656
"ASAN/MSAN sanitizer defaults to crashing "
5656
5657
"instead of returning NULL for malloc failure." )
5658
+ # gh-114331: The test allocates 784 271 641 GiB and mimalloc does not fail
5659
+ # to allocate it when using mimalloc on s390x.
5660
+ @skip_on_s390x
5657
5661
def test_maxcontext_exact_arith (self ):
5658
5662
5659
5663
# Make sure that exact operations do not raise MemoryError due
You can’t perform that action at this time.
0 commit comments