Skip to content

Commit

Permalink
t4120-apply-popt: help systems with core.filemode=false
Browse files Browse the repository at this point in the history
A test case verifies that filemode-only patches work as expected. Help
systems where "test -x" does not work by applying the test patch also to
the index, where the effects can be verified even on such systems.

Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Johannes Sixt authored and Junio C Hamano committed Feb 7, 2011
1 parent 899663f commit 97a853d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions t/t4120-apply-popt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
test_description='git apply -p handling.'

. ./test-lib.sh
. "$TEST_DIRECTORY"/lib-prereq-FILEMODE.sh

test_expect_success setup '
mkdir sub &&
Expand Down Expand Up @@ -62,8 +63,12 @@ test_expect_success 'apply (-p2) diff, mode change only' '
old mode 100644
new mode 100755
EOF
chmod 644 file1 &&
git apply -p2 patch.chmod &&
test_chmod -x file1 &&
git apply --index -p2 patch.chmod &&
case $(git ls-files -s file1) in 100755*) : good;; *) false;; esac
'

test_expect_success FILEMODE 'file mode was changed' '
test -x file1
'

Expand Down

0 comments on commit 97a853d

Please sign in to comment.