From: Brandon Casey Date: Sat, 11 Oct 2008 00:21:34 +0000 (-0500) Subject: t9001: use older Getopt::Long boolean prefix '--no' rather than '--no-' X-Git-Tag: v1.6.1-rc1~155 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=3fee1fe87144360a1913eab86af9ad136c810076;p=git.git t9001: use older Getopt::Long boolean prefix '--no' rather than '--no-' Since dbf5e1e9, the '--no-validate' option is a Getopt::Long boolean option. The '--no-' prefix (as in --no-validate) 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 '--novalidate'. 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: Shawn O. Pearce --- diff --git a/t/t9001-send-email.sh b/t/t9001-send-email.sh index d098a01ba..561ae7d0a 100755 --- a/t/t9001-send-email.sh +++ b/t/t9001-send-email.sh @@ -109,7 +109,7 @@ test_expect_success 'allow long lines with --no-validate' ' --from="Example " \ --to=nobody@example.com \ --smtp-server="$(pwd)/fake.sendmail" \ - --no-validate \ + --novalidate \ $patches longline.patch \ 2>errors '