Skip to content

Commit a16a8da

Browse files
committed
pythongh-114331: Skip decimal test_maxcontext_exact_arith on s390x
1 parent 9a1e55b commit a16a8da

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Lib/test/test_decimal.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5650,6 +5650,9 @@ def __abs__(self):
56505650
@unittest.skipIf(check_sanitizer(address=True, memory=True),
56515651
"ASAN/MSAN sanitizer defaults to crashing "
56525652
"instead of returning NULL for malloc failure.")
5653+
# gh-114331: The test allocates 784 271 641 GiB and mimalloc does not fail
5654+
# to allocate it when using mimalloc on s390x.
5655+
@support.skip_on_s390x
56535656
def test_maxcontext_exact_arith(self):
56545657

56555658
# Make sure that exact operations do not raise MemoryError due

0 commit comments

Comments
 (0)