tests/test-casefolding.t
branchstable
changeset 23595 035434b407be
parent 22046 7a9cbb315d84
child 23597 7a5bcd471f2e
equal deleted inserted replaced
23594:6f53629ad273 23595:035434b407be
   193   $ hg add
   193   $ hg add
   194   adding A
   194   adding A
   195   $ hg qrefresh a # issue 3271, qrefresh with file handled case wrong
   195   $ hg qrefresh a # issue 3271, qrefresh with file handled case wrong
   196   $ hg status # empty status means the qrefresh worked
   196   $ hg status # empty status means the qrefresh worked
   197 
   197 
   198   $ cd ..
   198 #if osx
       
   199 
       
   200 We assume anyone running the tests on a case-insensitive volume on OS
       
   201 X will be using HFS+. If that's not true, this test will fail.
       
   202 
       
   203 Bug: some codepoints are to be ignored on HFS+:
       
   204 
       
   205   $ rm A
       
   206   >>> open(u'a\u200c'.encode('utf-8'), 'w').write('unicode is fun')
       
   207   $ hg status
       
   208   M A
       
   209   ? a\xe2\x80\x8c (esc)
       
   210 #endif
       
   211   $ cd ..