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). 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 && -- gitgitgadget