summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2007-11-11 23:12:06 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-11-11 23:12:06 (GMT)
commit91febfba6f86e77c0ed320ecf7d0704be13c25fe (patch)
tree3b4c25013837ccbe4a1a1a3edbf89a782f135caf /t
parent82527cf33e59308b86cf3defe9ae0f5c2367a012 (diff)
parent243e0614e0f8783599b20106b50eee56d0a17332 (diff)
downloadgit-91febfba6f86e77c0ed320ecf7d0704be13c25fe.zip
git-91febfba6f86e77c0ed320ecf7d0704be13c25fe.tar.gz
git-91febfba6f86e77c0ed320ecf7d0704be13c25fe.tar.bz2
Merge branch 'js/parseopt-abbrev-fix'
* js/parseopt-abbrev-fix: parse-options: abbreviation engine fix.
Diffstat (limited to 't')
-rwxr-xr-xt/t0040-parse-options.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/t/t0040-parse-options.sh b/t/t0040-parse-options.sh
index ae49424..462fdf2 100755
--- a/t/t0040-parse-options.sh
+++ b/t/t0040-parse-options.sh
@@ -18,6 +18,7 @@ string options
-s, --string <string>
get a string
--string2 <str> get another string
+ --st <st> get another string (pervert ordering)
EOF
@@ -90,4 +91,16 @@ test_expect_failure 'ambiguously abbreviated option' '
test $? != 129
'
+cat > expect << EOF
+boolean: 0
+integer: 0
+string: 123
+EOF
+
+test_expect_success 'non ambiguous option (after two options it abbreviates)' '
+ test-parse-options --st 123 > output 2> output.err &&
+ test ! -s output.err &&
+ git diff expect output
+'
+
test_done