aboutsummaryrefslogtreecommitdiffstats
path: root/t/t7514-commit-patch.sh
diff options
context:
space:
mode:
authorGhanshyam Thakkar <shyamthakkar001@gmail.com>2024-02-13 05:35:30 +0530
committerJunio C Hamano <gitster@pobox.com>2024-02-13 14:12:53 -0800
commit7abc1869e552b80ea35923ae4315cb8bb0b47b64 (patch)
treea55209a1093ae41fd9c31789455a822edc342810 /t/t7514-commit-patch.sh
parent5a8ed3fe450caad740b1c236b3f14151f84bed05 (diff)
downloadgit-7abc1869e552b80ea35923ae4315cb8bb0b47b64.tar.gz
add -p tests: remove PERL prerequisites
The Perl version of the add -i/-p commands has been removed since 20b813d (add: remove "add.interactive.useBuiltin" & Perl "git add--interactive", 2023-02-07) Therefore, Perl prerequisite in the test scripts which use the patch mode functionality is not neccessary. Signed-off-by: Ghanshyam Thakkar <shyamthakkar001@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7514-commit-patch.sh')
-rwxr-xr-xt/t7514-commit-patch.sh6
1 files changed, 0 insertions, 6 deletions
diff --git a/t/t7514-commit-patch.sh b/t/t7514-commit-patch.sh
index 998a2103c7..b4de10a5dd 100755
--- a/t/t7514-commit-patch.sh
+++ b/t/t7514-commit-patch.sh
@@ -3,12 +3,6 @@
test_description='hunk edit with "commit -p -m"'
. ./test-lib.sh
-if ! test_have_prereq PERL
-then
- skip_all="skipping '$test_description' tests, perl not available"
- test_done
-fi
-
test_expect_success 'setup (initial)' '
echo line1 >file &&
git add file &&