From 283b9532831fc0a86c40ac89e1e713b28dabb241 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Sat, 22 Nov 2008 19:22:48 +0100 Subject: Add new testcase to show fast-export does not always exports all tags Signed-off-by: Miklos Vajna Signed-off-by: Junio C Hamano --- t/t9301-fast-export.sh | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 't/t9301-fast-export.sh') diff --git a/t/t9301-fast-export.sh b/t/t9301-fast-export.sh index c19b4a2bab..7607a12dbb 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_failure '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 -- cgit v1.2.1 From 2075ffb58e3a2d46d9e7606010f7f943f2295376 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Sun, 23 Nov 2008 12:55:54 +0100 Subject: fast-export: use an unsorted string list for extra_refs The list extra_refs contains tags and the objects referenced by them, so that they can be handled at the end. When a tag references a commit, that commit is added to the list using the same name. Also, the function handle_tags_and_duplicates() relies on the order the items were added to extra_refs, so clearly we do not want to use a sorted list here. Noticed by Miklos Vajna. Signed-off-by: Johannes Schindelin Tested-by: Miklos Vajna Signed-off-by: Junio C Hamano --- t/t9301-fast-export.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 't/t9301-fast-export.sh') diff --git a/t/t9301-fast-export.sh b/t/t9301-fast-export.sh index 7607a12dbb..638c858dc7 100755 --- a/t/t9301-fast-export.sh +++ b/t/t9301-fast-export.sh @@ -231,7 +231,7 @@ test_expect_success 'fast-export -C -C | fast-import' ' ' -test_expect_failure 'fast-export | fast-import when master is tagged' ' +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 && -- cgit v1.2.1