summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3eb91bf)
raw | patch | inline | side by side (parent: 3eb91bf)
author | Miklos Vajna <vmiklos@frugalware.org> | |
Sat, 22 Nov 2008 18:22:48 +0000 (19:22 +0100) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Mon, 24 Nov 2008 03:54:24 +0000 (19:54 -0800) |
Signed-off-by: Miklos Vajna <vmiklos@frugalware.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t9301-fast-export.sh | patch | blob | history |
diff --git a/t/t9301-fast-export.sh b/t/t9301-fast-export.sh
index c19b4a2bab586b21da43c7a838ba85626f913568..7607a12dbbc621656276e3bdadc7d65653705ff1 100755 (executable)
--- a/t/t9301-fast-export.sh
+++ b/t/t9301-fast-export.sh
'
+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