2008-02-26 05:07:39 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='test git rev-parse --parseopt'
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
cat > expect.err <<EOF
|
|
|
|
usage: some-command [options] <args>...
|
2008-06-14 09:27:21 +02:00
|
|
|
|
2008-02-26 05:07:39 +01:00
|
|
|
some-command does foo and bar!
|
|
|
|
|
|
|
|
-h, --help show the help
|
|
|
|
--foo some nifty option --foo
|
|
|
|
--bar ... some cool option --bar with an argument
|
|
|
|
|
|
|
|
An option group Header
|
2008-06-22 16:39:04 +02:00
|
|
|
-C[...] option C with an optional argument
|
2008-02-26 05:07:39 +01:00
|
|
|
|
|
|
|
Extras
|
|
|
|
--extra1 line above used to cause a segfault but no longer does
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success 'test --parseopt help output' '
|
|
|
|
git rev-parse --parseopt -- -h 2> output.err <<EOF
|
|
|
|
some-command [options] <args>...
|
|
|
|
|
|
|
|
some-command does foo and bar!
|
|
|
|
--
|
|
|
|
h,help show the help
|
|
|
|
|
|
|
|
foo some nifty option --foo
|
|
|
|
bar= some cool option --bar with an argument
|
|
|
|
|
|
|
|
An option group Header
|
|
|
|
C? option C with an optional argument
|
|
|
|
|
|
|
|
Extras
|
|
|
|
extra1 line above used to cause a segfault but no longer does
|
|
|
|
EOF
|
2008-05-24 07:28:56 +02:00
|
|
|
test_cmp expect.err output.err
|
2008-02-26 05:07:39 +01:00
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|