import random
import logging
from StringIO import StringIO
+from test import test_support
# Work around broken sem_open implementations
def test_rapid_restart(self):
authkey = os.urandom(32)
+ port = test_support.find_unused_port()
manager = QueueManager(
- address=('localhost', 9999), authkey=authkey, serializer=SERIALIZER)
+ address=('localhost', port), authkey=authkey, serializer=SERIALIZER)
manager.start()
p = self.Process(target=self._putter, args=(manager.address, authkey))
del queue
manager.shutdown()
manager = QueueManager(
- address=('localhost', 9999), authkey=authkey, serializer=SERIALIZER)
+ address=('localhost', port), authkey=authkey, serializer=SERIALIZER)
manager.start()
manager.shutdown()
Tests
-----
+- Issue #7498: test_multiprocessing now uses test_support.find_unused_port
+ instead of a hardcoded port number in test_rapid_restart.
+
- Issue #7431: use TESTFN in test_linecache instead of trying to create a
file in the Lib/test directory, which might be read-only for the
user running the tests.