Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-06-12 23:17:57 +0400
committerJunio C Hamano <gitster@pobox.com>2014-06-12 23:17:57 +0400
commit9a597edc831038b8c449bd3e527ca2976e4e55a6 (patch)
tree3a4d039e1a8b6ae3bcc0e6bd19f1447dccd62402 /t
parent8f92c7755ef2e2802e24eeb3a7de1727045950c0 (diff)
parentc8e1ee4f2c8e28b7eef824248f09ba37599593d7 (diff)
Merge branch 'jc/rev-parse-argh-dashed-multi-words' into maint
* 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 fe2fb17102..1bafb9098c 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 &&