summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-06-09 18:26:49 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-06-09 18:26:49 (GMT)
commit0147602c2bf1fff790b06295e6139117a381b206 (patch)
tree6b47cc8081c2fe556a3a01d1c20880c90b182c61 /t
parentbfbdfa33f6d491904a7d4390280dfc695ec9ae1a (diff)
parentc8e1ee4f2c8e28b7eef824248f09ba37599593d7 (diff)
downloadgit-0147602c2bf1fff790b06295e6139117a381b206.zip
git-0147602c2bf1fff790b06295e6139117a381b206.tar.gz
git-0147602c2bf1fff790b06295e6139117a381b206.tar.bz2
Merge branch 'jc/rev-parse-argh-dashed-multi-words'
"update-index --cacheinfo" in 2.0 crashes on a malformed command line. * jc/rev-parse-argh-dashed-multi-words: update-index: fix segfault with missing --cacheinfo argument
Diffstat (limited to 't')
-rwxr-xr-xt/t2107-update-index-basic.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/t2107-update-index-basic.sh b/t/t2107-update-index-basic.sh
index fe2fb17..1bafb90 100755
--- a/t/t2107-update-index-basic.sh
+++ b/t/t2107-update-index-basic.sh
@@ -29,6 +29,10 @@ test_expect_success 'update-index -h with corrupt index' '
test_i18ngrep "[Uu]sage: git update-index" broken/usage
'
+test_expect_success '--cacheinfo complains of missing arguments' '
+ test_must_fail git update-index --cacheinfo
+'
+
test_expect_success '--cacheinfo does not accept blob null sha1' '
echo content >file &&
git add file &&