diff options
Diffstat (limited to 't/t2107-update-index-basic.sh')
| -rwxr-xr-x | t/t2107-update-index-basic.sh | 13 | 
1 files changed, 13 insertions, 0 deletions
diff --git a/t/t2107-update-index-basic.sh b/t/t2107-update-index-basic.sh index a6405d318d..fe2fb17102 100755 --- a/t/t2107-update-index-basic.sh +++ b/t/t2107-update-index-basic.sh @@ -48,4 +48,17 @@ test_expect_success '--cacheinfo does not accept gitlink null sha1' '  	test_cmp expect actual  ' +test_expect_success '--cacheinfo mode,sha1,path (new syntax)' ' +	echo content >file && +	git hash-object -w --stdin <file >expect && + +	git update-index --add --cacheinfo 100644 "$(cat expect)" file && +	git rev-parse :file >actual && +	test_cmp expect actual && + +	git update-index --add --cacheinfo "100644,$(cat expect),elif" && +	git rev-parse :elif >actual && +	test_cmp expect actual +' +  test_done  | 
