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>
This commit is contained in:
Brandon Casey 2009-04-24 18:18:52 -05:00 коммит произвёл Junio C Hamano
Родитель 66913284f0
Коммит 84eeb687de
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

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