summaryrefslogtreecommitdiff
path: root/t/t5801-remote-helpers.sh
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2019-06-03 21:13:27 -0500
committerJunio C Hamano <gitster@pobox.com>2019-06-04 11:28:58 -0700
commit8144f09ccde4df49cdb807a7ce9e6cb14a09bd2e (patch)
tree17977b0726006a0b4564138eaa3cedf390823993 /t/t5801-remote-helpers.sh
parent6e17fb3409d90f496769a5af1646a65e6770625b (diff)
downloadgit-8144f09ccde4df49cdb807a7ce9e6cb14a09bd2e.tar.gz
t5801 (remote-helpers): add test to fetch tags
This used to work, but commit e198b3a740 broke it. e198b3a740 (fetch: replace string-list used as a look-up table with a hashmap) Probably all remote helpers that use the import method are affected, but we didn't catch the issue. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5801-remote-helpers.sh')
-rwxr-xr-xt/t5801-remote-helpers.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/t/t5801-remote-helpers.sh b/t/t5801-remote-helpers.sh
index 9d1a514d18..4138354e00 100755
--- a/t/t5801-remote-helpers.sh
+++ b/t/t5801-remote-helpers.sh
@@ -301,4 +301,14 @@ test_expect_success 'fetch url' '
compare_refs server HEAD local FETCH_HEAD
'
+test_expect_failure 'fetch tag' '
+ (cd server &&
+ git tag v1.0
+ ) &&
+ (cd local &&
+ git fetch
+ ) &&
+ compare_refs local v1.0 server v1.0
+'
+
test_done