diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-01-23 13:16:41 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-01-23 13:16:41 -0800 |
commit | 897de845e62ddccba5310057b64d568bc3d4e182 (patch) | |
tree | 8391954c015fb3097af96aa38c1cd3190929e25e /t/t9000-addresses.sh | |
parent | Merge branch 'ab/doc-cat-file-e-still-shows-errors' (diff) | |
parent | send-email: add test for Linux's get_maintainer.pl (diff) | |
download | tgif-897de845e62ddccba5310057b64d568bc3d4e182.tar.xz |
Merge branch 'mm/send-email-fallback-to-local-mail-address'
Instead of maintaining home-grown email address parsing code, ship
a copy of reasonably recent Mail::Address to be used as a fallback
in 'git send-email' when the platform lacks it.
* mm/send-email-fallback-to-local-mail-address:
send-email: add test for Linux's get_maintainer.pl
perl/Git: remove now useless email-address parsing code
send-email: add and use a local copy of Mail::Address
Diffstat (limited to 't/t9000-addresses.sh')
-rwxr-xr-x | t/t9000-addresses.sh | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/t/t9000-addresses.sh b/t/t9000-addresses.sh deleted file mode 100755 index a1ebef6de2..0000000000 --- a/t/t9000-addresses.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -test_description='compare address parsing with and without Mail::Address' -. ./test-lib.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 -} - -perl -MMail::Address -e 0 2>/dev/null || { - skip_all="Perl Mail::Address unavailable, skipping test" - test_done -} - -test_external_has_tap=1 - -test_external_without_stderr \ - 'Perl address parsing function' \ - perl "$TEST_DIRECTORY"/t9000/test.pl - -test_done |