mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
94221d2203
As of the last commit, we can use "perl" instead of "$PERL_PATH" when running tests, as the former is now a function which uses the latter. As the shorter "perl" is easier on the eyes, let's switch to using it everywhere. This is not quite a mechanical s/$PERL_PATH/perl/ replacement, though. There are some places where we invoke perl from a script we generate on the fly, and those scripts do not have access to our internal shell functions. The result can be double-checked by running: ln -s /bin/false bin-wrappers/perl make test which continues to pass even after this patch. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
27 lines
538 B
Bash
Executable file
27 lines
538 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Copyright (c) 2010 Ævar Arnfjörð Bjarmason
|
|
#
|
|
|
|
test_description='Perl gettext interface (Git::I18N)'
|
|
|
|
. ./lib-gettext.sh
|
|
|
|
if ! test_have_prereq PERL; then
|
|
skip_all='skipping perl interface tests, perl not available'
|
|
test_done
|
|
fi
|
|
|
|
perl -MTest::More -e 0 2>/dev/null || {
|
|
skip_all="Perl Test::More unavailable, skipping test"
|
|
test_done
|
|
}
|
|
|
|
# The external test will outputs its own plan
|
|
test_external_has_tap=1
|
|
|
|
test_external_without_stderr \
|
|
'Perl Git::I18N API' \
|
|
perl "$TEST_DIRECTORY"/t0202/test.pl
|
|
|
|
test_done
|