test: Don't be so picky with failed lookups Not found means not found, and the other way around.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
diff --git a/src/fileops.c b/src/fileops.c
index 763537a..6abab88 100644
--- a/src/fileops.c
+++ b/src/fileops.c
@@ -418,14 +418,14 @@ int git_futils_find_global_file(git_buf *path, const char *filename)
root.path[0] == L'%') /* i.e. no expansion happened */
{
giterr_set(GITERR_OS, "Cannot locate the user's profile directory");
- return -1;
+ return GIT_ENOTFOUND;
}
} else {
if (win32_expand_path(&root, L"%USERPROFILE%\\") < 0 ||
root.path[0] == L'%') /* i.e. no expansion happened */
{
giterr_set(GITERR_OS, "Cannot locate the user's profile directory");
- return -1;
+ return GIT_ENOTFOUND;
}
}
@@ -440,7 +440,7 @@ int git_futils_find_global_file(git_buf *path, const char *filename)
if (home == NULL) {
giterr_set(GITERR_OS, "Global file lookup failed. "
"Cannot locate the user's home directory");
- return -1;
+ return GIT_ENOTFOUND;
}
if (git_buf_joinpath(path, home, filename) < 0)
diff --git a/tests-clar/core/env.c b/tests-clar/core/env.c
index a2a65be..0e0ddf3 100644
--- a/tests-clar/core/env.c
+++ b/tests-clar/core/env.c
@@ -87,7 +87,7 @@ void test_core_env__1(void)
{
git_buf path = GIT_BUF_INIT;
- cl_assert(git_futils_find_global_file(&path, "nonexistentfile") == GIT_ENOTFOUND);
+ cl_must_fail(git_futils_find_global_file(&path, "nonexistentfile"));
#ifdef GIT_WIN32
cl_git_pass(cl_setenv("USERPROFILE", "doesnotexist"));
@@ -95,7 +95,7 @@ void test_core_env__1(void)
cl_git_pass(cl_setenv("HOME", "doesnotexist"));
#endif
- cl_assert(git_futils_find_global_file(&path, "nonexistentfile") == GIT_ENOTFOUND);
+ cl_must_fail(git_futils_find_global_file(&path, "nonexistentfile"));
#ifdef GIT_WIN32
cl_git_pass(cl_setenv("USERPROFILE", NULL));
@@ -103,14 +103,12 @@ void test_core_env__1(void)
cl_git_pass(cl_setenv("HOME", NULL));
#endif
- cl_assert(git_futils_find_global_file(&path, "nonexistentfile") == -1);
-
- cl_assert(git_futils_find_system_file(&path, "nonexistentfile") == GIT_ENOTFOUND);
+ cl_must_fail(git_futils_find_global_file(&path, "nonexistentfile"));
+ cl_must_fail(git_futils_find_system_file(&path, "nonexistentfile"));
#ifdef GIT_WIN32
cl_git_pass(cl_setenv("PROGRAMFILES", NULL));
-
- cl_assert(git_futils_find_system_file(&path, "nonexistentfile") == -1);
+ cl_must_fail(git_futils_find_system_file(&path, "nonexistentfile"));
#endif
git_buf_free(&path);