mirror of
https://github.com/python/cpython.git
synced 2025-07-30 06:34:15 +00:00
Issue #7449: Skip test_socketserver if threading support is disabled
This commit is contained in:
parent
c49dfcc8dc
commit
708c0727f9
2 changed files with 3 additions and 0 deletions
|
@ -61,6 +61,7 @@ def simple_subprocess(testcase):
|
|||
testcase.assertEquals(72 << 8, status)
|
||||
|
||||
|
||||
@unittest.skipUnless(threading, 'Threading required for this test.')
|
||||
class SocketServerTest(unittest.TestCase):
|
||||
"""Test all socket servers."""
|
||||
|
||||
|
|
|
@ -75,6 +75,8 @@ Extension Modules
|
|||
Tests
|
||||
-----
|
||||
|
||||
- Issue #7449: Skip test_socketserver if threading support is disabled
|
||||
|
||||
- On darwin, ``test_site`` assumed that a framework build was being used,
|
||||
leading to a failure where four directories were expected for site-packages
|
||||
instead of two in a non-framework build.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue