diff options
Diffstat (limited to 'tests-clar/status')
-rw-r--r-- | tests-clar/status/worktree.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests-clar/status/worktree.c b/tests-clar/status/worktree.c index c8940ff83..c8fb1c173 100644 --- a/tests-clar/status/worktree.c +++ b/tests-clar/status/worktree.c @@ -694,6 +694,37 @@ void test_status_worktree__file_status_honors_case_ignorecase_regarding_untracke cl_git_fail_with(git_status_file(&status, repo, "NEW_FILE"), GIT_ENOTFOUND); } +void test_status_worktree__file_status_honors_case_ignorecase_on_case_insensitive_platforms(void) +{ +#ifdef CASE_INSENSITIVE_FILESYSTEM + git_repository *repo = cl_git_sandbox_init("status"); + unsigned int status; + git_index *index; + + cl_repo_set_bool(repo, "core.ignorecase", true); + + repo = cl_git_sandbox_reopen(); + + cl_git_pass(git_status_file(&status, repo, "NEW_FILE")); + cl_assert_equal_i(GIT_STATUS_WT_NEW, status); + + cl_git_pass(git_status_file(&status, repo, "new_file")); + cl_assert_equal_i(GIT_STATUS_WT_NEW, status); + + cl_git_pass(git_repository_index(&index, repo)); + + cl_git_pass(git_index_add_bypath(index, "new_file")); + cl_git_pass(git_index_write(index)); + git_index_free(index); + + cl_git_pass(git_status_file(&status, repo, "new_file")); + cl_assert_equal_i(GIT_STATUS_INDEX_NEW, status); + + cl_git_pass(git_status_file(&status, repo, "NEW_FILE")); + cl_assert_equal_i(GIT_STATUS_INDEX_NEW, status); +#endif +} + void test_status_worktree__simple_delete(void) { git_repository *repo = cl_git_sandbox_init("renames"); |