##// END OF EJS Templates
test-casefolding.t: demonstrate a bug with HFS+ ignoring some codepoints
Augie Fackler -
r23595:035434b4 stable
parent child Browse files
Show More
@@ -195,4 +195,17 b' case changes.'
195 195 $ hg qrefresh a # issue 3271, qrefresh with file handled case wrong
196 196 $ hg status # empty status means the qrefresh worked
197 197
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
198 211 $ cd ..
General Comments 0
You need to be logged in to leave comments. Login now