Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2015-12-01 22:41:23 +0300
committerMichał Górny <mgorny@gentoo.org>2015-12-01 22:42:56 +0300
commit326c9fc2ed2164e6840847fd073d8894ab1032c9 (patch)
tree2738ab385835a9f48d6be38f38f839a7b12c8591
parent15e6a5afb9217b09e60cd0aef48e0a7781f3922f (diff)
checkout test: Apply umask to file-mode test as well
Fix the file-mode test to expect system umask being applied to the created file as well (it is currently applied to the directory only). This fixes the test on systems where umask != 022. Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--tests/checkout/index.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/checkout/index.c b/tests/checkout/index.c
index 9fa901867..8af3e5684 100644
--- a/tests/checkout/index.c
+++ b/tests/checkout/index.c
@@ -298,7 +298,7 @@ void test_checkout_index__options_dir_modes(void)
/* File-mode test, since we're on the 'dir' branch */
cl_git_pass(p_stat("./testrepo/a/b.txt", &st));
- cl_assert_equal_i_fmt(st.st_mode, GIT_FILEMODE_BLOB_EXECUTABLE, "%07o");
+ cl_assert_equal_i_fmt(st.st_mode, GIT_FILEMODE_BLOB_EXECUTABLE & ~um, "%07o");
git_commit_free(commit);
}