Kaydet (Commit) 1fa08bcb authored tarafından Gregory P. Smith's avatar Gregory P. Smith

Skip the test requiring ctypes if ctypes is unavailable.

prevents http://buildbot.python.org/all/builders/x86%20Ubuntu%20Shared%203.x/builds/240/steps/test/logs/stdio
üst 21d333b7
......@@ -5,7 +5,6 @@ from test import support
import subprocess
import sys
import platform
import ctypes
import signal
import io
import locale
......@@ -22,6 +21,11 @@ import shutil
import gc
import textwrap
try:
import ctypes
except ImportError:
ctypes = None
try:
import threading
except ImportError:
......@@ -2454,6 +2458,7 @@ class POSIXProcessTestCase(BaseTestCase):
'Linux': 'so.6',
'Darwin': 'dylib',
}
@unittest.skipIf(not ctypes, 'ctypes module required.')
@unittest.skipIf(platform.uname()[0] not in _libc_file_extensions,
'Test requires a libc this code can load with ctypes.')
@unittest.skipIf(not sys.executable, 'Test requires sys.executable.')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment