Which file system do you run your tests on? (it is easy to create case sensitive filesystems manually, but there is no platform independent way to detect them)
The test should only run ok on case sensitive file systems or when apr's truename support works (which currently isn't the case on os/x / Darwin) Bert Huijben (Cell phone) From: Justin Erenkrantz Sent: 13-10-2012 23:22 To: Subversion Development Subject: Case-insensitive checks on Mac OS X 10.8.x XPASSing When I run make check on Mac OS X 10.8.2, it looks like the case-sensitivity checks now XPASS: XPASS: op-depth-test 23: test_case_rename on case (in)sensitive system XPASS: copy_tests.py 102: case-only rename I'm wondering if the case-preserving semantics in 10.8 changed - as it looks like rename will succeed now in 10.8. (My filesystem is still case-preserving...see below.) Can someone with 10.7 verify that the tests still XFAIL? Or, is something else going on? BTW, on a related note, gmake -j8 was failing for me with: gmake: *** read jobs pipe: No such file or directory. Stop. In parallel (har har), I was upgrading to XCode 4.5.1 and I can't reproduce that error now.... -- justin % uname -a Darwin local 12.2.0 Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64 x86_64 % touch abc % ls -l total 0 -rw-r--r-- 1 justin staff 0 Oct 13 17:08 abc % touch aBc % ls -l total 0 -rw-r--r-- 1 justin staff 0 Oct 13 17:08 abc % mv abc aBc % ls -l total 0 -rw-r--r-- 1 justin staff 0 Oct 13 17:08 aBc