From 84eeb687de7a6c7c42af3fb51b176e0f412a979e Mon Sep 17 00:00:00 2001 From: Brandon Casey Date: Fri, 24 Apr 2009 18:18:52 -0500 Subject: t9001: use older Getopt::Long boolean prefix '--no' rather than '--no-' The '--no-thread' option is a Getopt::Long boolean option. The '--no-' prefix (as in --no-thread) 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 '--nothread'. 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 d9420e0..ce26ea4 100755 --- a/t/t9001-send-email.sh +++ b/t/t9001-send-email.sh @@ -616,7 +616,7 @@ test_expect_success 'in-reply-to but no threading' ' --from="Example " \ --to=nobody@example.com \ --in-reply-to="" \ - --no-thread \ + --nothread \ $patches | grep "In-Reply-To: " ' -- cgit v0.10.2-6-g49f6