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