summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-11-28 03:23:27 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-11-28 03:23:27 (GMT)
commit539eec48f0a101b45c5f150a2bbc067fd85bc96d (patch)
treebd7134cfb57be91b518be6cbaf21436c664cc993 /t
parent35243577ab460d0b97b97948928d47f71dc8e46a (diff)
parent2075ffb58e3a2d46d9e7606010f7f943f2295376 (diff)
downloadgit-539eec48f0a101b45c5f150a2bbc067fd85bc96d.zip
git-539eec48f0a101b45c5f150a2bbc067fd85bc96d.tar.gz
git-539eec48f0a101b45c5f150a2bbc067fd85bc96d.tar.bz2
Merge branch 'mv/fast-export' into maint
* mv/fast-export: fast-export: use an unsorted string list for extra_refs Add new testcase to show fast-export does not always exports all tags
Diffstat (limited to 't')
-rwxr-xr-xt/t9301-fast-export.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/t/t9301-fast-export.sh b/t/t9301-fast-export.sh
index c19b4a2..638c858 100755
--- a/t/t9301-fast-export.sh
+++ b/t/t9301-fast-export.sh
@@ -231,4 +231,12 @@ test_expect_success 'fast-export -C -C | fast-import' '
'
+test_expect_success 'fast-export | fast-import when master is tagged' '
+
+ git tag -m msg last &&
+ git fast-export -C -C --signed-tags=strip --all > output &&
+ test $(grep -c "^tag " output) = 3
+
+'
+
test_done