diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2007-10-14 17:54:06 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-10-29 21:03:30 -0700 |
commit | 7f275b91520d31bfbe43ec5a9bbaf8ac6e663ce0 (patch) | |
tree | 3e21e4a89617c56b47b7d4d1f2312198a8641de9 /t | |
parent | 0ce865b134f8ccd60f6e584744144b0978a9fdf2 (diff) | |
download | git-7f275b91520d31bfbe43ec5a9bbaf8ac6e663ce0.tar.gz git-7f275b91520d31bfbe43ec5a9bbaf8ac6e663ce0.tar.xz |
parse-options: Allow abbreviated options when unambiguous
When there is an option "--amend", the option parser now recognizes
"--am" for that option, provided that there is no other option beginning
with "--am".
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 't')
-rwxr-xr-x | t/t0040-parse-options.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/t/t0040-parse-options.sh b/t/t0040-parse-options.sh index 8e4d74b20..ae49424aa 100755 --- a/t/t0040-parse-options.sh +++ b/t/t0040-parse-options.sh @@ -67,4 +67,27 @@ test_expect_success 'intermingled arguments' ' git diff expect output ' +cat > expect << EOF +boolean: 0 +integer: 2 +string: (not set) +EOF + +test_expect_success 'unambiguously abbreviated option' ' + test-parse-options --int 2 --boolean --no-bo > output 2> output.err && + test ! -s output.err && + git diff expect output +' + +test_expect_success 'unambiguously abbreviated option with "="' ' + test-parse-options --int=2 > output 2> output.err && + test ! -s output.err && + git diff expect output +' + +test_expect_failure 'ambiguously abbreviated option' ' + test-parse-options --strin 123; + test $? != 129 +' + test_done |