# test_socket_ssl
# Controlled by test_socket_ssl.skip_expected. Requires the network
# 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 = {
'win32':
import os.path
from test import test_normalization
from test import test_socket_ssl
+ from test import test_timeout
self.valid = False
if sys.platform in _expectations:
if test_socket_ssl.skip_expected:
self.expected.add('test_socket_ssl')
+ if test_timeout.skip_expected:
+ self.expected.add('test_timeout')
+
if not sys.platform in ("mac", "darwin"):
self.expected.add("test_macostools")
self.expected.add("test_macfs")
import unittest
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 socket
def test_main():
+ test_support.requires('network')
+
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(CreationTestCase))
suite.addTest(unittest.makeSuite(TimeoutTestCase))