~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/ftp_server/medusa_based.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-09-01 08:02:42 UTC
  • mfrom: (5390.3.3 faster-revert-593560)
  • Revision ID: pqm@pqm.ubuntu.com-20100901080242-esg62ody4frwmy66
(spiv) Avoid repeatedly calling self.target.all_file_ids() in
 InterTree.iter_changes. (Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
254
254
        self._async_thread = threading.Thread(
255
255
                target=FTPTestServer._asyncore_loop_ignore_EBADF,
256
256
                kwargs={'timeout':0.1, 'count':10000})
 
257
        if 'threads' in tests.selftest_debug_flags:
 
258
            sys.stderr.write('Thread started: %s\n'
 
259
                             % (self._async_thread.ident,))
257
260
        self._async_thread.setDaemon(True)
258
261
        self._async_thread.start()
259
262
 
261
264
        self._ftp_server.close()
262
265
        asyncore.close_all()
263
266
        self._async_thread.join()
 
267
        if 'threads' in tests.selftest_debug_flags:
 
268
            sys.stderr.write('Thread  joined: %s\n'
 
269
                             % (self._async_thread.ident,))
264
270
 
265
271
    @staticmethod
266
272
    def _asyncore_loop_ignore_EBADF(*args, **kwargs):