summaryrefslogtreecommitdiff
path: root/t/t9122-git-svn-author.sh
diff options
context:
space:
mode:
authorAvery Pennarun <apenwarr@gmail.com>2008-06-12 23:10:51 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-06-14 18:47:56 (GMT)
commitc8c6a2ecb48d717fe2735bf7790226021380d520 (patch)
tree4633073c6cdf1beceb19304e2ea0b87805dbdfd9 /t/t9122-git-svn-author.sh
parent328eb9b32f7babfb182bad8655491aa6265e96eb (diff)
downloadgit-c8c6a2ecb48d717fe2735bf7790226021380d520.zip
git-c8c6a2ecb48d717fe2735bf7790226021380d520.tar.gz
git-c8c6a2ecb48d717fe2735bf7790226021380d520.tar.bz2
git-svn: test that extra blank lines aren't inserted in commit messages.
Improve the git-svn-author test to check that extra newlines aren't inserted into commit messages as they take a round trip from git to svn and back. We test both with and without the --add-author-from option to git-svn. git-svn: test that svn repo doesn't have extra newlines. Signed-off-by: Avery Pennarun <apenwarr@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9122-git-svn-author.sh')
-rwxr-xr-xt/t9122-git-svn-author.sh16
1 files changed, 15 insertions, 1 deletions
diff --git a/t/t9122-git-svn-author.sh b/t/t9122-git-svn-author.sh
index 8c58f0b..1190576 100755
--- a/t/t9122-git-svn-author.sh
+++ b/t/t9122-git-svn-author.sh
@@ -64,7 +64,21 @@ test_expect_success 'interact with it via git-svn' '
# Make sure --add-author-from with --use-log-author affected
# the authorship information
- grep "^Author: A U Thor " actual.4
+ grep "^Author: A U Thor " actual.4 &&
+
+ # Make sure there are no commit messages with excess blank lines
+ test $(grep "^ " actual.2 | wc -l) = 3 &&
+ test $(grep "^ " actual.3 | wc -l) = 5 &&
+ test $(grep "^ " actual.4 | wc -l) = 5 &&
+
+ # Make sure there are no svn commit messages with excess blank lines
+ (
+ cd work.svn &&
+ svn up &&
+
+ test $(svn log -r2:2 | wc -l) = 5 &&
+ test $(svn log -r4:4 | wc -l) = 7
+ )
'
test_done