[3.11] gh-116831: Fixes tests for c extension in WASI for Python 3.11 (GH-116831) (#116933)

gh-116831: Fixes tests for c extension in WASI

We can skip the C extension based tests under WASI.
This commit is contained in:
Kushal Das 2024-03-18 07:03:01 +01:00 committed by GitHub
parent fb66087134
commit a93974d452
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -10,6 +10,7 @@
from test.support import os_helper
from test.support import script_helper
from test.support import warnings_helper
from test.support import is_wasi
import unittest
import warnings
imp = warnings_helper.import_deprecated('imp')
@ -23,6 +24,8 @@ def requires_load_dynamic(meth):
"""Decorator to skip a test if not running under CPython or lacking
imp.load_dynamic()."""
meth = support.cpython_only(meth)
if is_wasi:
return unittest.skipIf(True, 'Not supoorted in WASI')(meth)
return unittest.skipIf(getattr(imp, 'load_dynamic', None) is None,
'imp.load_dynamic() required')(meth)