Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'nd/ita-cleanup' into maint
[gitweb.git]
/
t
/
t7004-tag.sh
diff --git
a/t/t7004-tag.sh
b/t/t7004-tag.sh
index 3dd2f51e49d7e6824382ac415cf64842fa3b757f..c64579fe152bac31e5b2d1acf8179248be6f6e89 100755
(executable)
--- a/
t/t7004-tag.sh
+++ b/
t/t7004-tag.sh
@@
-1558,4
+1558,12
@@
test_expect_success '--no-merged show unmerged tags' '
test_cmp expect actual
'
+test_expect_success 'ambiguous branch/tags not marked' '
+ git tag ambiguous &&
+ git branch ambiguous &&
+ echo ambiguous >expect &&
+ git tag -l ambiguous >actual &&
+ test_cmp expect actual
+'
+
test_done