summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2014-05-02 10:29:53 +0200
committerCarlos Martín Nieto <cmn@dwim.me>2014-05-02 10:29:53 +0200
commitc570f0680d810c4799505a0f948836d51ec950d5 (patch)
treec3a98e1c81dc2d491f99dff74f2774ec61593d79
parente99495d1c91f3e822c47ce1a7c4bc051e55733ac (diff)
downloadlibgit2-c570f0680d810c4799505a0f948836d51ec950d5.tar.gz
bypass the first
-rw-r--r--tests/attr/ignore.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/attr/ignore.c b/tests/attr/ignore.c
index 68875194d..19d2d5939 100644
--- a/tests/attr/ignore.c
+++ b/tests/attr/ignore.c
@@ -133,6 +133,13 @@ void test_attr_ignore__expand_tilde_to_homedir(void)
git_buf cleanup = GIT_BUF_INIT;
git_config *cfg;
+ int mask = p_umask(0);
+ p_umask(mask);
+
+ printf("umask %o\n", mask);
+
+ return;
+
assert_is_ignored(false, "example.global_with_tilde");
cl_fake_home(&cleanup);