From: Felipe Contreras Date: Thu, 26 Nov 2009 19:12:00 +0000 (+0200) Subject: format-patch: add test for parsing of "--" X-Git-Tag: v1.6.6-rc1~8^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7e93d3b9e58a359a1073460e8f2cb3fef0368bd7;p=git.git format-patch: add test for parsing of "--" Signed-off-by: Felipe Contreras Signed-off-by: Junio C Hamano --- diff --git a/t/t4014-format-patch.sh b/t/t4014-format-patch.sh index 531f5b795..437807e41 100755 --- a/t/t4014-format-patch.sh +++ b/t/t4014-format-patch.sh @@ -515,4 +515,9 @@ test_expect_success 'format-patch --signoff' ' grep "^Signed-off-by: $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL>" ' +test_expect_success 'format-patch -- ' ' + git format-patch master..side -- file 2>error && + ! grep "Use .--" error +' + test_done