~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_lockdir.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-04 18:51:39 UTC
  • mfrom: (2961.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20071104185139-kaio3sneodg2kp71
Authentication ring implementation (read-only)

Show diffs side-by-side

added added

removed removed

Lines of Context:
190
190
            lf1.unlock()
191
191
        lock_base = lf2.transport.abspath(lf2.path)
192
192
        self.assertEqual(1, len(self._logged_reports))
193
 
        lock_url = lf2.transport.abspath(lf2.path)
194
193
        self.assertEqual('%s %s\n'
195
194
                         '%s\n%s\n'
196
 
                         'Will continue to try until %s, unless '
197
 
                         'you press Ctrl-C\n'
198
 
                         'If you\'re sure that it\'s not being '
199
 
                         'modified, use bzr break-lock %s',
 
195
                         'Will continue to try until %s\n',
200
196
                         self._logged_reports[0][0])
201
197
        args = self._logged_reports[0][1]
202
198
        self.assertEqual('Unable to obtain', args[0])
337
333
           unlocks the lockdir, allowing Lock2 to acquire the lock.
338
334
        """
339
335
 
340
 
        raise tests.KnownFailure(
341
 
            "timing dependency in lock tests (#213182)")
342
 
 
343
336
        wait_to_check_lock = Lock()
344
337
        wait_until_checked_lock = Lock()
345
338
 
413
406
        # There should be 2 reports, because the lock changed
414
407
        lock_base = lf2.transport.abspath(lf2.path)
415
408
        self.assertEqual(2, len(self._logged_reports))
416
 
        lock_url = lf2.transport.abspath(lf2.path)
 
409
 
417
410
        self.assertEqual('%s %s\n'
418
411
                         '%s\n%s\n'
419
 
                         'Will continue to try until %s, unless '
420
 
                         'you press Ctrl-C\n'
421
 
                         'If you\'re sure that it\'s not being '
422
 
                         'modified, use bzr break-lock %s',
 
412
                         'Will continue to try until %s\n',
423
413
                         self._logged_reports[0][0])
424
414
        args = self._logged_reports[0][1]
425
415
        self.assertEqual('Unable to obtain', args[0])
431
421
 
432
422
        self.assertEqual('%s %s\n'
433
423
                         '%s\n%s\n'
434
 
                         'Will continue to try until %s, unless '
435
 
                         'you press Ctrl-C\n'
436
 
                         'If you\'re sure that it\'s not being '
437
 
                         'modified, use bzr break-lock %s',
 
424
                         'Will continue to try until %s\n',
438
425
                         self._logged_reports[1][0])
439
426
        args = self._logged_reports[1][1]
440
427
        self.assertEqual('Lock owner changed for', args[0])