/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/per_workingtree/test_set_root_id.py

  • Committer: Martin Pool
  • Date: 2009-08-28 05:00:33 UTC
  • mfrom: (4659 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4660.
  • Revision ID: mbp@sourcefrog.net-20090828050033-blwvnig3gdzbr1iw
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Tests for WorkingTree.set_root_id"""
18
18
 
 
19
import sys
 
20
 
19
21
from bzrlib import inventory
 
22
from bzrlib.tests import TestSkipped
20
23
from bzrlib.tests.per_workingtree import TestCaseWithWorkingTree
21
24
 
22
25
 
23
26
class TestSetRootId(TestCaseWithWorkingTree):
24
27
 
25
28
    def test_set_and_read_unicode(self):
 
29
        if sys.platform == "win32":
 
30
            raise TestSkipped("don't use oslocks on win32 in unix manner")
26
31
        # This test tests that setting the root doesn't flush, so it
27
32
        # deliberately tests concurrent access that isn't possible on windows.
28
33
        self.thisFailsStrictLockCheck()