mirror of https://github.com/python/cpython
Issue #22980: Skip a sysconfig test if _ctypes is not available.
Extracted from revision a1daf2d289ad by Zachary Ware.
This commit is contained in:
parent
5fd832ba09
commit
52e29072e1
|
@ -5,7 +5,8 @@ import subprocess
|
|||
import shutil
|
||||
from copy import copy
|
||||
|
||||
from test.support import (run_unittest, TESTFN, unlink, check_warnings,
|
||||
from test.support import (run_unittest,
|
||||
import_module, TESTFN, unlink, check_warnings,
|
||||
captured_stdout, skip_unless_symlink, change_cwd)
|
||||
|
||||
import sysconfig
|
||||
|
@ -387,7 +388,8 @@ class TestSysConfig(unittest.TestCase):
|
|||
|
||||
@unittest.skipUnless(sys.platform == 'linux', 'Linux-specific test')
|
||||
def test_triplet_in_ext_suffix(self):
|
||||
import ctypes, platform, re
|
||||
ctypes = import_module('ctypes')
|
||||
import platform, re
|
||||
machine = platform.machine()
|
||||
suffix = sysconfig.get_config_var('EXT_SUFFIX')
|
||||
if re.match('(aarch64|arm|mips|ppc|powerpc|s390|sparc)', machine):
|
||||
|
|
Loading…
Reference in New Issue