/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_lockdir.py

  • Committer: John Arbash Meinel
  • Date: 2007-12-13 20:17:06 UTC
  • mto: This revision was merged to the branch mainline in revision 3121.
  • Revision ID: john@arbash-meinel.com-20071213201706-nt8f4om80gyn6l6v
Fix LockableFiles to not use modes that allow the user to write to things they create.
It seems that cygwin + FAT32 will report all directories as readonly,
even though they are not.
Regardless, someone might have .bzr/repository as readonly, but still
allow you to create files in a subdirectory.
Either way, there is no reason to have a file that we are going to
write to be created readonly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
597
597
 
598
598
    def test_lock_permission(self):
599
599
        if not osutils.supports_posix_readonly():
600
 
            raise tests.TestSkipped('Cannot induce a permission failure')
 
600
            raise tests.TestNotApplicable('Cannot induce a permission failure')
601
601
        ld1 = self.get_lock()
602
602
        lock_path = ld1.transport.local_abspath('test_lock')
603
603
        os.mkdir(lock_path)