Kaydet (Commit) 5f22e72e authored tarafından Victor Stinner's avatar Victor Stinner

Merged revisions 81543 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81543 | victor.stinner | 2010-05-26 19:25:28 +0200 (mer., 26 mai 2010) | 2 lines

  Issue #7449: Skip test_socketserver if threading support is disabled
........
üst 7f1bf800
...@@ -61,6 +61,7 @@ def simple_subprocess(testcase): ...@@ -61,6 +61,7 @@ def simple_subprocess(testcase):
testcase.assertEquals(72 << 8, status) testcase.assertEquals(72 << 8, status)
@unittest.skipUnless(threading, 'Threading required for this test.')
class SocketServerTest(unittest.TestCase): class SocketServerTest(unittest.TestCase):
"""Test all socket servers.""" """Test all socket servers."""
......
...@@ -1385,6 +1385,8 @@ Documentation ...@@ -1385,6 +1385,8 @@ Documentation
Tests Tests
----- -----
- Issue #7449: Skip test_socketserver if threading support is disabled
- Issue #8672: Add a zlib test ensuring that an incomplete stream can be - Issue #8672: Add a zlib test ensuring that an incomplete stream can be
handled by a decompressor object without errors (it returns incomplete handled by a decompressor object without errors (it returns incomplete
uncompressed data). uncompressed data).
......
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