Kaydet (Commit) 55b61d21 authored tarafından Neal Norwitz's avatar Neal Norwitz

Fix SF bugs #692951 and 692988, test_timeout.py needs 'network' resource

require -u network to run test_timeout since
it fails when not connected to a network.
üst 6e2d1c7a
...@@ -543,6 +543,9 @@ def printlist(x, width=70, indent=4): ...@@ -543,6 +543,9 @@ def printlist(x, width=70, indent=4):
# test_socket_ssl # test_socket_ssl
# Controlled by test_socket_ssl.skip_expected. Requires the network # Controlled by test_socket_ssl.skip_expected. Requires the network
# resource, and a socket module with ssl support. # resource, and a socket module with ssl support.
# test_timeout
# Controlled by test_timeout.skip_expected. Requires the network
# resource and a socket module.
_expectations = { _expectations = {
'win32': 'win32':
...@@ -945,6 +948,7 @@ class _ExpectedSkips: ...@@ -945,6 +948,7 @@ class _ExpectedSkips:
import os.path import os.path
from test import test_normalization from test import test_normalization
from test import test_socket_ssl from test import test_socket_ssl
from test import test_timeout
self.valid = False self.valid = False
if sys.platform in _expectations: if sys.platform in _expectations:
...@@ -960,6 +964,9 @@ class _ExpectedSkips: ...@@ -960,6 +964,9 @@ class _ExpectedSkips:
if test_socket_ssl.skip_expected: if test_socket_ssl.skip_expected:
self.expected.add('test_socket_ssl') self.expected.add('test_socket_ssl')
if test_timeout.skip_expected:
self.expected.add('test_timeout')
if not sys.platform in ("mac", "darwin"): if not sys.platform in ("mac", "darwin"):
self.expected.add("test_macostools") self.expected.add("test_macostools")
self.expected.add("test_macfs") self.expected.add("test_macfs")
......
...@@ -3,6 +3,9 @@ ...@@ -3,6 +3,9 @@
import unittest import unittest
from test import test_support from test import test_support
# This requires the 'network' resource as given on the regrtest command line.
skip_expected = not test_support.is_resource_enabled('network')
import time import time
import socket import socket
...@@ -182,6 +185,8 @@ class TimeoutTestCase(unittest.TestCase): ...@@ -182,6 +185,8 @@ class TimeoutTestCase(unittest.TestCase):
def test_main(): def test_main():
test_support.requires('network')
suite = unittest.TestSuite() suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(CreationTestCase)) suite.addTest(unittest.makeSuite(CreationTestCase))
suite.addTest(unittest.makeSuite(TimeoutTestCase)) suite.addTest(unittest.makeSuite(TimeoutTestCase))
......
...@@ -57,7 +57,8 @@ TBD ...@@ -57,7 +57,8 @@ TBD
Tests Tests
----- -----
TBD - test_timeout now requires -u network to be passed to regrtest to run.
See SF bug #692988.
Windows Windows
------- -------
......
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