diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2010-08-13 20:40:04 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-08-18 12:43:23 -0700 |
commit | 535d9742852e12a4d4cfc878eb2e734df70a8f22 (patch) | |
tree | 18097d029fabb52d656ab670ff50ceefd7edfd6c /t/t4129-apply-samemode.sh | |
parent | 617344d77bf2a11b507fb74160b14e5b7476f8ad (diff) | |
download | git-535d9742852e12a4d4cfc878eb2e734df70a8f22.tar.gz |
tests: Move FILEMODE prerequisite to lib-prereq-FILEMODE.sh
Change the five tests that were all checking "git config --bool
core.filemode" to use a new FILEMODE prerequisite in
lib-prereq-FILEMODE.sh.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4129-apply-samemode.sh')
-rwxr-xr-x | t/t4129-apply-samemode.sh | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/t/t4129-apply-samemode.sh b/t/t4129-apply-samemode.sh index fc7af04931..0d36ebdc86 100755 --- a/t/t4129-apply-samemode.sh +++ b/t/t4129-apply-samemode.sh @@ -3,13 +3,7 @@ test_description='applying patch with mode bits' . ./test-lib.sh - -if test "$(git config --bool core.filemode)" = false -then - say 'filemode disabled on the filesystem' -else - test_set_prereq FILEMODE -fi +. "$TEST_DIRECTORY"/lib-prereq-FILEMODE.sh test_expect_success setup ' echo original >file && |