diff options
author | Christian Heimes <christian@python.org> | 2022-08-15 07:41:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-15 07:41:10 +0200 |
commit | 4a7f5a55dc88c14cef880ae38a96018514ca9d83 (patch) | |
tree | 5c93774d5687c3c480006803e6accc72b5516812 /Lib/test/test_decimal.py | |
parent | e8259e047c42976427b08f100b9d8ba52db7ee69 (diff) | |
download | cpython-4a7f5a55dc88c14cef880ae38a96018514ca9d83.tar.gz cpython-4a7f5a55dc88c14cef880ae38a96018514ca9d83.zip |
gh-95853: Address wasm build and test issues (GH-95985)
Diffstat (limited to 'Lib/test/test_decimal.py')
-rw-r--r-- | Lib/test/test_decimal.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py index f7a47c86a3f..7c5964e3d55 100644 --- a/Lib/test/test_decimal.py +++ b/Lib/test/test_decimal.py @@ -37,7 +37,7 @@ from test.support import (run_unittest, run_doctest, is_resource_enabled, requires_legacy_unicode_capi, check_sanitizer) from test.support import (TestFailed, run_with_locale, cpython_only, - darwin_malloc_err_warning) + darwin_malloc_err_warning, is_emscripten) from test.support.import_helper import import_fresh_module from test.support import threading_helper from test.support import warnings_helper @@ -5605,6 +5605,7 @@ class CWhitebox(unittest.TestCase): # Issue 41540: @unittest.skipIf(sys.platform.startswith("aix"), "AIX: default ulimit: test is flaky because of extreme over-allocation") + @unittest.skipIf(is_emscripten, "Test is unstable on Emscripten") @unittest.skipIf(check_sanitizer(address=True, memory=True), "ASAN/MSAN sanitizer defaults to crashing " "instead of returning NULL for malloc failure.") |