You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
990 B
44 lines
990 B
17 years ago
|
#!/bin/sh
|
||
|
|
||
|
test_description='test git rev-parse --parseopt'
|
||
|
. ./test-lib.sh
|
||
|
|
||
|
cat > expect.err <<EOF
|
||
|
usage: 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
|
||
|
|
||
|
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
|
||
|
git diff expect.err output.err
|
||
|
'
|
||
|
|
||
|
test_done
|