diff options
| author | Christian Heimes <christian@python.org> | 2022-02-05 19:52:01 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-05 19:52:01 (GMT) |
| commit | 96b344c2f15cb09251018f57f19643fe20637392 (patch) | |
| tree | 3fe6c8f5d1a2897881806db1f3b441d11114adeb /Lib/test/test_capi.py | |
| parent | 9d4161a60ca8b470148ffd6c73e3110a0aa6d66f (diff) | |
| download | cpython-96b344c2f15cb09251018f57f19643fe20637392.zip cpython-96b344c2f15cb09251018f57f19643fe20637392.tar.gz cpython-96b344c2f15cb09251018f57f19643fe20637392.tar.bz2 | |
bpo-40280: Address more test failures on Emscripten (GH-31050)
Co-authored-by: Brett Cannon <brett@python.org>
Diffstat (limited to 'Lib/test/test_capi.py')
| -rw-r--r-- | Lib/test/test_capi.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py index ccf8ced..089088d 100644 --- a/Lib/test/test_capi.py +++ b/Lib/test/test_capi.py @@ -611,6 +611,7 @@ class CAPITest(unittest.TestCase): self.assertNotIn(name, modules) self.assertEqual(len(modules), total) + @support.requires_subprocess() def test_fatal_error(self): # By default, stdlib extension modules are ignored, # but not test modules. @@ -880,6 +881,7 @@ class Test_testinternalcapi(unittest.TestCase): if name.startswith('test_')) +@support.requires_subprocess() class PyMemDebugTests(unittest.TestCase): PYTHONMALLOC = 'debug' # '0x04c06e0' or '04C06E0' |
