aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-06-22 14:32:58 -0700
committerJunio C Hamano <gitster@pobox.com>2008-06-22 14:32:58 -0700
commitdd503ed4d121e24888f3b20c0f353857b164b6a1 (patch)
tree21e940bfbe9b33af7ace374213a1180422a63148 /t
parent1947bdbc31e8e1419bdfe90d2357c68919189c30 (diff)
parentdf6a7ff7ac55d320afa1b8a59393122d6ca0f6c4 (diff)
downloadgit-dd503ed4d121e24888f3b20c0f353857b164b6a1.tar.gz
git-dd503ed4d121e24888f3b20c0f353857b164b6a1.tar.xz
Merge branch 'pb/fast-export'
* pb/fast-export: builtin-fast-export: Add importing and exporting of revision marks
Diffstat (limited to 't')
-rwxr-xr-xt/t9301-fast-export.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/t/t9301-fast-export.sh b/t/t9301-fast-export.sh
index f09bfb111..60b5ee397 100755
--- a/t/t9301-fast-export.sh
+++ b/t/t9301-fast-export.sh
@@ -78,6 +78,30 @@ test_expect_success 'iso-8859-1' '
git cat-file commit i18n | grep "Áéí óú")
'
+test_expect_success 'import/export-marks' '
+
+ git checkout -b marks master &&
+ git fast-export --export-marks=tmp-marks HEAD &&
+ test -s tmp-marks &&
+ cp tmp-marks ~ &&
+ test $(wc -l < tmp-marks) -eq 3 &&
+ test $(
+ git fast-export --import-marks=tmp-marks\
+ --export-marks=tmp-marks HEAD |
+ grep ^commit |
+ wc -l) \
+ -eq 0 &&
+ echo change > file &&
+ git commit -m "last commit" file &&
+ test $(
+ git fast-export --import-marks=tmp-marks \
+ --export-marks=tmp-marks HEAD |
+ grep ^commit\ |
+ wc -l) \
+ -eq 1 &&
+ test $(wc -l < tmp-marks) -eq 4
+
+'
cat > signed-tag-import << EOF
tag sign-your-name