From: Brandon Casey Date: Thu, 3 Dec 2009 17:52:46 +0000 (-0600) Subject: t9001: use older Getopt::Long boolean prefix '--no' rather than '--no-' X-Git-Tag: v1.6.6-rc2~15 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=907a0b1e04ea31cb368e9422df93d8ebb0187914;p=git.git t9001: use older Getopt::Long boolean prefix '--no' rather than '--no-' The '--no-chain-reply-to' option is a Getopt::Long boolean option. The '--no-' prefix (as in --no-chain-reply-to) for boolean options is not supported in Getopt::Long version 2.32 which was released with Perl 5.8.0. This version only supports '--no' as in '--nochain-reply-to'. More recent versions of Getopt::Long, such as version 2.34, support either prefix. So use the older form in the tests. Signed-off-by: Brandon Casey Signed-off-by: Junio C Hamano --- diff --git a/t/t9001-send-email.sh b/t/t9001-send-email.sh index fb51ab3db..752adaac8 100755 --- a/t/t9001-send-email.sh +++ b/t/t9001-send-email.sh @@ -827,7 +827,7 @@ test_expect_success 'no warning with an explicit --no-chain-reply-to' ' --dry-run \ --from="Example " \ --to=nobody@example.com \ - --no-chain-reply-to \ + --nochain-reply-to \ outdir/000?-*.patch 2>errors >out && ! grep "no-chain-reply-to" errors '