~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_lockdir.py

merge portability and other fixes from mgz

Show diffs side-by-side

added added

removed removed

Lines of Context:
678
678
        info = LockHeldInfo.for_this_process(None)
679
679
        info.info_dict['pid'] = '123123123' # probably not alive at all
680
680
        if sys.platform == 'win32':
681
 
            raise KnownFailure(
 
681
            self.knownFailure(
682
682
                'live lock holder detection not implemented yet on win32')
683
683
        self.assertTrue(info.is_lock_holder_known_dead())
684
684