diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-04-06 14:50:46 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-04-06 14:50:46 -0700 |
commit | f9bdf9b2102bd848c7a3eabff2ba5af63828de54 (patch) | |
tree | 4274aed1bdfa89d04b1d028520a95d83f69f4521 /t | |
parent | 15bf05241676a1870cbb82a46f509130627bb1d2 (diff) | |
parent | 1fb5fdd25f018480b48f6a74f06bad7e04866440 (diff) | |
download | git-f9bdf9b2102bd848c7a3eabff2ba5af63828de54.tar.gz git-f9bdf9b2102bd848c7a3eabff2ba5af63828de54.tar.xz |
Merge branch 'ef/maint-empty-commit-log'
* ef/maint-empty-commit-log:
rev-list: fix --pretty=oneline with empty message
Diffstat (limited to 't')
-rwxr-xr-x | t/t6006-rev-list-format.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/t/t6006-rev-list-format.sh b/t/t6006-rev-list-format.sh index b0047d3c6..d24ca5c07 100755 --- a/t/t6006-rev-list-format.sh +++ b/t/t6006-rev-list-format.sh @@ -209,4 +209,13 @@ test_expect_success '%gd shortens ref name' ' test_cmp expect.gd-short actual.gd-short ' +test_expect_success 'oneline with empty message' ' + git commit -m "dummy" --allow-empty && + git commit -m "dummy" --allow-empty && + git filter-branch --msg-filter "sed -e s/dummy//" HEAD^^.. && + git rev-list --oneline HEAD > /tmp/test.txt && + test $(git rev-list --oneline HEAD | wc -l) -eq 5 && + test $(git rev-list --oneline --graph HEAD | wc -l) -eq 5 +' + test_done |