summaryrefslogtreecommitdiff
path: root/t/t9700-perl-git.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-11-22 16:28:46 -0800
committerJunio C Hamano <gitster@pobox.com>2009-11-22 16:28:46 -0800
commit37e3b6104e8b795f70186c6d9138262a0bf5688e (patch)
tree7199f0c0848a58b6d813eb619f6c4b27e75291ba /t/t9700-perl-git.sh
parenteb2fc8f899a58eedc87e7e8ea0fdecdc2ba9f430 (diff)
parentbe38ca3d19be50be447e1c5952f53fa70bf21a1c (diff)
Merge branch 'pb/maint-use-custom-perl'
* pb/maint-use-custom-perl: Make sure $PERL_PATH is defined when the test suite is run.
Diffstat (limited to 't/t9700-perl-git.sh')
-rwxr-xr-xt/t9700-perl-git.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t9700-perl-git.sh b/t/t9700-perl-git.sh
index 4eb7d3f7f0..8686086dde 100755
--- a/t/t9700-perl-git.sh
+++ b/t/t9700-perl-git.sh
@@ -11,7 +11,7 @@ if ! test_have_prereq PERL; then
test_done
fi
-perl -MTest::More -e 0 2>/dev/null || {
+"$PERL_PATH" -MTest::More -e 0 2>/dev/null || {
say "Perl Test::More unavailable, skipping test"
test_done
}
@@ -48,6 +48,6 @@ test_expect_success \
test_external_without_stderr \
'Perl API' \
- perl "$TEST_DIRECTORY"/t9700/test.pl
+ "$PERL_PATH" "$TEST_DIRECTORY"/t9700/test.pl
test_done