On May 17, 2011, at 8:18 AM, rhuij...@apache.org wrote: > Author: rhuijben > Date: Tue May 17 15:18:19 2011 > New Revision: 1104323 > > URL: http://svn.apache.org/viewvc?rev=1104323&view=rev > Log: > * subversion/tests/libsvn_wc/op-derhuijben@apache.orgpth-test.c > (test_list): Mark test_case_rename for MAC OS. > > Modified: > subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c > > Modified: subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c > URL: > http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c?rev=1104323&r1=1104322&r2=1104323&view=diff > ============================================================================== > --- subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c (original) > +++ subversion/trunk/subversion/tests/libsvn_wc/op-depth-test.c Tue May 17 > 15:18:19 2011 > @@ -3492,7 +3492,13 @@ struct svn_test_descriptor_t test_funcs[ > "test_shadowed_update"), > SVN_TEST_OPTS_PASS(test_copy_of_deleted, > "test_copy_of_deleted (issue #3873)"), > +#ifndef DARWIN > SVN_TEST_OPTS_PASS(test_case_rename, > "test_case_rename on case (in)sensitive system"), > +#else > + /* apr doesn't implement APR_FILEPATH_TRUENAME for MAC OS yet */ > + SVN_TEST_OPTS_XFAIL(test_case_rename, > + "test_case_rename on case (in)sensitive system"), > +#endif
One can have case-insensitive filesystem on MacOS X, so this isn't perfect. In fact, I use one myself. It would be nice if the test checked the type of filesystem the test was being run on. Blair