git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] add test for 'git rebase --keep-empty'
@ 2012-08-08 16:48 Martin von Zweigbergk
  2012-08-08 16:59 ` Neil Horman
  2012-08-09 15:39 ` [PATCH v2] add tests " Martin von Zweigbergk
  0 siblings, 2 replies; 8+ messages in thread
From: Martin von Zweigbergk @ 2012-08-08 16:48 UTC (permalink / raw)
  To: git; +Cc: Neil Horman, Martin von Zweigbergk

Signed-off-by: Martin von Zweigbergk <martin.von.zweigbergk@gmail.com>
---

While trying to use patch-id instead of
--ignore-if-in-upstream/--cherry-pick/cherry/etc, I noticed that
patch-id ignores empty patches and I was surprised that tests still
pass. This test case would be useful to protect --keep-empty.

 t/t3401-rebase-partial.sh | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/t/t3401-rebase-partial.sh b/t/t3401-rebase-partial.sh
index 7f8693b..b89b512 100755
--- a/t/t3401-rebase-partial.sh
+++ b/t/t3401-rebase-partial.sh
@@ -47,7 +47,14 @@ test_expect_success 'rebase ignores empty commit' '
 	git commit --allow-empty -m empty &&
 	test_commit D &&
 	git rebase C &&
-	test $(git log --format=%s C..) = "D"
+	test "$(git log --format=%s C..)" = "D"
+'
+
+test_expect_success 'rebase --keep-empty' '
+	git reset --hard D &&
+	git rebase --keep-empty C &&
+	test "$(git log --format=%s C..)" = "D
+empty"
 '
 
 test_done
-- 
1.7.11.1.104.ge7b44f1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2012-08-10 17:00 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-08 16:48 [PATCH] add test for 'git rebase --keep-empty' Martin von Zweigbergk
2012-08-08 16:59 ` Neil Horman
2012-08-09 15:39 ` [PATCH v2] add tests " Martin von Zweigbergk
2012-08-09 17:22   ` Junio C Hamano
2012-08-10 13:26   ` Neil Horman
2012-08-10 15:01     ` Joachim Schmitz
2012-08-10 16:20       ` Porting to a new platform Junio C Hamano
2012-08-10 16:59         ` Joachim Schmitz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).