From: Junio C Hamano Date: Sat, 5 Nov 2005 21:08:18 +0000 (-0800) Subject: test: t4102-apply-rename fails with strict umask. X-Git-Tag: v0.99.9e^2~18 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b52d9f9ba7276b9a9516ba359849f771b354d65b;p=git.git test: t4102-apply-rename fails with strict umask. We checked the result of patch application for full permission bits, when the only thing we cared about was to make sure the executable bit was correctly set. Noticed by Peter Baumann. Signed-off-by: Junio C Hamano --- diff --git a/t/t4102-apply-rename.sh b/t/t4102-apply-rename.sh index 530cc4d2a..0401d7bbc 100755 --- a/t/t4102-apply-rename.sh +++ b/t/t4102-apply-rename.sh @@ -32,6 +32,6 @@ test_expect_success apply \ 'git-apply --index --stat --summary --apply test-patch' test_expect_success validate \ - 'test -f bar && ls -l bar | grep "^-..x..x..x"' + 'test -f bar && ls -l bar | grep "^-..x......"' test_done