"Jeff Hostetler via GitGitGadget" <gitgitgadget@xxxxxxxxx> writes: > From: Jeff Hostetler <jeffhostetler@xxxxxxxxxx> > > Add non-existent "SKIPME" prereq to the case-insensitive tests. > > The previous commit added test cases to demonstrate an error where > FSMonitor can get confused on a case-insensitive file system when the > on-disk spelling of a file or directory is wrong. Let's disable those > tests before we incrementally teach Git to properly recognize and > handle those types of problems (so that a bisect between here and the > final commit in this patch series won't throw a false alarm). You talk about bisection, but hasn't the previous step already broken bisection without these SKIPME prerequisites? IOW, shouldn't this step squashed into the previous? Also, it is much more common to replace "test_expect_success" with "test_expect_failure" to indicate that the steps are broken. Was there a reason why we choose to do it differently? > Signed-off-by: Jeff Hostetler <jeffhostetler@xxxxxxxxxx> > --- > t/t7527-builtin-fsmonitor.sh | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/t/t7527-builtin-fsmonitor.sh b/t/t7527-builtin-fsmonitor.sh > index 3d21295f789..4acb547819c 100755 > --- a/t/t7527-builtin-fsmonitor.sh > +++ b/t/t7527-builtin-fsmonitor.sh > @@ -1051,7 +1051,7 @@ test_expect_success 'split-index and FSMonitor work well together' ' > # > # The setup is a little contrived. > # > -test_expect_success CASE_INSENSITIVE_FS 'fsmonitor subdir case wrong on disk' ' > +test_expect_success SKIPME,CASE_INSENSITIVE_FS 'fsmonitor subdir case wrong on disk' ' > test_when_finished "stop_daemon_delete_repo subdir_case_wrong" && > > git init subdir_case_wrong && > @@ -1128,7 +1128,7 @@ test_expect_success CASE_INSENSITIVE_FS 'fsmonitor subdir case wrong on disk' ' > ! grep -q " M dir1/dir2/dir3/file3" "$PWD/subdir_case_wrong.out" > ' > > -test_expect_success CASE_INSENSITIVE_FS 'fsmonitor file case wrong on disk' ' > +test_expect_success SKIPME,CASE_INSENSITIVE_FS 'fsmonitor file case wrong on disk' ' > test_when_finished "stop_daemon_delete_repo file_case_wrong" && > > git init file_case_wrong &&