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@xxxxxxxxxxxxxxx> --- t/t9001-send-email.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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 <nobody@xxxxxxxxxxx>" \ --to=nobody@xxxxxxxxxxx \ --in-reply-to="<in-reply-id@xxxxxxxxxxx>" \ - --no-thread \ + --nothread \ $patches | grep "In-Reply-To: <in-reply-id@xxxxxxxxxxx>" ' -- 1.6.2.4.24.gde59d2 -- 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