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

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-11-06 00:08:18 +0300
committerJunio C Hamano <junkio@cox.net>2005-11-06 00:08:18 +0300
commitb52d9f9ba7276b9a9516ba359849f771b354d65b (patch)
tree5af1b5b93257ecfe993bb24975bf596faa342758 /t
parent3d95bf074e8532fd0643b886422eddd0768a3f2c (diff)
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 <junkio@cox.net>
Diffstat (limited to 't')
-rwxr-xr-xt/t4102-apply-rename.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t4102-apply-rename.sh b/t/t4102-apply-rename.sh
index 530cc4d2a3..0401d7bbc6 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