summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@microsoft.com>2015-09-16 10:17:54 -0400
committerCarlos Martín Nieto <cmn@dwim.me>2015-11-04 16:59:09 -0800
commit097c5bc7c50c2c7343e829072953da8faa26e97c (patch)
tree9625fd65f5c9fbf96f030a899102826d636076b0
parentd73bf24366615f5a02bd95c4ad0e5c566991e490 (diff)
downloadlibgit2-097c5bc7c50c2c7343e829072953da8faa26e97c.tar.gz
checkout::tree tests: don't use hardcoded mode
-rw-r--r--tests/checkout/tree.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/checkout/tree.c b/tests/checkout/tree.c
index 3b84f43ce..5692e1f25 100644
--- a/tests/checkout/tree.c
+++ b/tests/checkout/tree.c
@@ -946,7 +946,7 @@ void test_checkout_tree__filemode_preserved_in_index(void)
cl_git_pass(git_checkout_tree(g_repo, (const git_object *)commit, &opts));
cl_assert(entry = git_index_get_bypath(index, "executable.txt", 0));
- cl_assert_equal_i(0100755, entry->mode);
+ cl_assert(GIT_PERMS_IS_EXEC(entry->mode));
git_commit_free(commit);
@@ -957,7 +957,7 @@ void test_checkout_tree__filemode_preserved_in_index(void)
cl_git_pass(git_checkout_tree(g_repo, (const git_object *)commit, &opts));
cl_assert(entry = git_index_get_bypath(index, "a/b.txt", 0));
- cl_assert_equal_i(0100644, entry->mode);
+ cl_assert(!GIT_PERMS_IS_EXEC(entry->mode));
git_commit_free(commit);
@@ -968,7 +968,7 @@ void test_checkout_tree__filemode_preserved_in_index(void)
cl_git_pass(git_checkout_tree(g_repo, (const git_object *)commit, &opts));
cl_assert(entry = git_index_get_bypath(index, "a/b.txt", 0));
- cl_assert_equal_i(0100755, entry->mode);
+ cl_assert(GIT_PERMS_IS_EXEC(entry->mode));
git_commit_free(commit);
@@ -979,7 +979,7 @@ void test_checkout_tree__filemode_preserved_in_index(void)
cl_git_pass(git_checkout_tree(g_repo, (const git_object *)commit, &opts));
cl_assert(entry = git_index_get_bypath(index, "a/b.txt", 0));
- cl_assert_equal_i(0100644, entry->mode);
+ cl_assert(!GIT_PERMS_IS_EXEC(entry->mode));
git_commit_free(commit);
@@ -1017,7 +1017,7 @@ void test_checkout_tree__filemode_preserved_in_workdir(void)
cl_git_pass(git_commit_lookup(&commit, g_repo, &executable_oid));
cl_git_pass(git_checkout_tree(g_repo, (const git_object *)commit, &opts));
- cl_assert_equal_i(0100755, read_filemode("executable.txt"));
+ cl_assert(GIT_PERMS_IS_EXEC(read_filemode("executable.txt")));
git_commit_free(commit);
@@ -1027,7 +1027,7 @@ void test_checkout_tree__filemode_preserved_in_workdir(void)
cl_git_pass(git_commit_lookup(&commit, g_repo, &executable_oid));
cl_git_pass(git_checkout_tree(g_repo, (const git_object *)commit, &opts));
- cl_assert_equal_i(0100644, read_filemode("a/b.txt"));
+ cl_assert(!GIT_PERMS_IS_EXEC(read_filemode("a/b.txt")));
git_commit_free(commit);
@@ -1037,7 +1037,7 @@ void test_checkout_tree__filemode_preserved_in_workdir(void)
cl_git_pass(git_commit_lookup(&commit, g_repo, &executable_oid));
cl_git_pass(git_checkout_tree(g_repo, (const git_object *)commit, &opts));
- cl_assert_equal_i(0100755, read_filemode("a/b.txt"));
+ cl_assert(GIT_PERMS_IS_EXEC(read_filemode("a/b.txt")));
git_commit_free(commit);
@@ -1047,7 +1047,7 @@ void test_checkout_tree__filemode_preserved_in_workdir(void)
cl_git_pass(git_commit_lookup(&commit, g_repo, &executable_oid));
cl_git_pass(git_checkout_tree(g_repo, (const git_object *)commit, &opts));
- cl_assert_equal_i(0100644, read_filemode("a/b.txt"));
+ cl_assert(!GIT_PERMS_IS_EXEC(read_filemode("a/b.txt")));
git_commit_free(commit);
#endif