gh-117398: Use the correct module loader for iOS in datetime CAPI test. (#120477)

Use the correct loader for iOS.
This commit is contained in:
Russell Keith-Magee 2024-06-15 08:05:30 +08:00 committed by GitHub
parent 92f6d400f7
commit 5c58e728b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 1 deletions

View File

@ -6786,6 +6786,13 @@ class CapiTest(unittest.TestCase):
self.assertEqual(dt_orig, dt_rt)
def test_type_check_in_subinterp(self):
# iOS requires the use of the custom framework loader,
# not the ExtensionFileLoader.
if sys.platform == "ios":
extension_loader = "AppleFrameworkLoader"
else:
extension_loader = "ExtensionFileLoader"
script = textwrap.dedent(f"""
if {_interpreters is None}:
import _testcapi as module
@ -6795,7 +6802,7 @@ class CapiTest(unittest.TestCase):
import importlib.util
fullname = '_testcapi_datetime'
origin = importlib.util.find_spec('_testcapi').origin
loader = importlib.machinery.ExtensionFileLoader(fullname, origin)
loader = importlib.machinery.{extension_loader}(fullname, origin)
spec = importlib.util.spec_from_loader(fullname, loader)
module = importlib.util.module_from_spec(spec)
spec.loader.exec_module(module)