summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorKevin Ballard <kevin@sb.org>2010-03-30 02:46:38 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-03-30 04:22:37 (GMT)
commit657ab61efa918f46f1b412613643d1a1bbed2194 (patch)
tree5667119bfd878d0918ccdb5efdc6582241881c64 /t
parente07665e524d0398a34059d605f674182bfeeaf39 (diff)
downloadgit-657ab61efa918f46f1b412613643d1a1bbed2194.zip
git-657ab61efa918f46f1b412613643d1a1bbed2194.tar.gz
git-657ab61efa918f46f1b412613643d1a1bbed2194.tar.bz2
format-patch: Squelch 'fatal: Not a range." error
Don't output an error on `git format-patch --ignore-if-in-upstream HEAD`. This matches the behavior of `git format-patch HEAD`. Signed-off-by: Kevin Ballard <kevin@sb.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t4014-format-patch.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/t4014-format-patch.sh b/t/t4014-format-patch.sh
index f2a2aaa..843ef7f 100755
--- a/t/t4014-format-patch.sh
+++ b/t/t4014-format-patch.sh
@@ -557,4 +557,8 @@ test_expect_success 'format-patch -- <path>' '
! grep "Use .--" error
'
+test_expect_success 'format-patch --ignore-if-in-upstream HEAD' '
+ git format-patch --ignore-if-in-upstream HEAD
+'
+
test_done