]> Pileus Git - ~andy/git/commitdiff
t9001: use older Getopt::Long boolean prefix '--no' rather than '--no-'
authorBrandon Casey <casey@nrlssc.navy.mil>
Fri, 24 Apr 2009 23:18:52 +0000 (18:18 -0500)
committerJunio C Hamano <gitster@pobox.com>
Sat, 25 Apr 2009 15:54:18 +0000 (08:54 -0700)
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 <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t9001-send-email.sh

index d9420e0a3b611c8aa8bb3a64d1bb21859d4a87ff..ce26ea4ac53a4608f6f8234b67868a9cc85be7f8 100755 (executable)
@@ -616,7 +616,7 @@ test_expect_success 'in-reply-to but no threading' '
                --from="Example <nobody@example.com>" \
                --to=nobody@example.com \
                --in-reply-to="<in-reply-id@example.com>" \
-               --no-thread \
+               --nothread \
                $patches |
        grep "In-Reply-To: <in-reply-id@example.com>"
 '