I'll commit this (which is simpler than "Perlhaps this would suffice" patch I sent earlier). Thanks for noticing. -- >8 -- [PATCH] t9700: skip when Test::More is not available Signed-off-by: Junio C Hamano <gitster@xxxxxxxxx> --- t/t9700-perl-git.sh | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/t/t9700-perl-git.sh b/t/t9700-perl-git.sh index b2fb9ec..5dd32f4 100755 --- a/t/t9700-perl-git.sh +++ b/t/t9700-perl-git.sh @@ -6,6 +6,11 @@ test_description='perl interface (Git.pm)' . ./test-lib.sh +perl -MTest::More -e 0 2>/dev/null || { + say skip "Perl Test::More unavailable, skipping test" + test_done +} + # set up test repository test_expect_success \ -- 1.5.6.1.102.g8e69d -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html