target=self._test_create_grandchild_process, args=(wconn, ))
p.start()
- if not rconn.poll(timeout=60):
+ if not rconn.poll(timeout=support.LONG_TIMEOUT):
raise AssertionError("Could not communicate with child process")
parent_process_status = rconn.recv()
self.assertEqual(parent_process_status, "alive")
p.terminate()
p.join()
- if not rconn.poll(timeout=60):
+ if not rconn.poll(timeout=support.LONG_TIMEOUT):
raise AssertionError("Could not communicate with child process")
parent_process_status = rconn.recv()
self.assertEqual(parent_process_status, "not alive")
from asyncio import log
from asyncio import protocols
from asyncio import sslproto
+from test import support
from test.test_asyncio import utils as test_utils
from test.test_asyncio import functional as func_tests
class BaseStartTLS(func_tests.FunctionalTestCaseMixin):
PAYLOAD_SIZE = 1024 * 100
- TIMEOUT = 60
+ TIMEOUT = support.LONG_TIMEOUT
def new_loop(self):
raise NotImplementedError
# - end of server_helper section
class SMTPHandlerTest(BaseTest):
- # bpo-14314, bpo-19665, bpo-34092: don't wait forever, timeout of 1 minute
- TIMEOUT = 60.0
+ # bpo-14314, bpo-19665, bpo-34092: don't wait forever
+ TIMEOUT = support.LONG_TIMEOUT
def test_basic(self):
sockmap = {}