aboutsummaryrefslogtreecommitdiff
path: root/t/t9001-send-email.sh
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2008-01-18 09:20:10 -0500
committerJunio C Hamano <gitster@pobox.com>2008-01-18 13:33:57 -0800
commitc764a0c2b6d8c94d90c95fa8170970c85a40665c (patch)
tree41c7e7af23dc3e31552b23c70a54a4b9462dc672 /t/t9001-send-email.sh
parent747bbff9b9583642cd8702b7b559757a6960df00 (diff)
downloadgit-c764a0c2b6d8c94d90c95fa8170970c85a40665c.tar.gz
git-c764a0c2b6d8c94d90c95fa8170970c85a40665c.tar.xz
send-email: add no-validate option
Since we are now sanity-checking the contents of patches and refusing to send ones with long lines, this knob provides a way for the user to override the new behavior (if, e.g., he knows his SMTP path will handle it). Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9001-send-email.sh')
-rwxr-xr-xt/t9001-send-email.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/t/t9001-send-email.sh b/t/t9001-send-email.sh
index 1c4181022..4f6822f2c 100755
--- a/t/t9001-send-email.sh
+++ b/t/t9001-send-email.sh
@@ -98,4 +98,14 @@ test_expect_success 'no patch was sent' '
! test -e commandline
'
+test_expect_success 'allow long lines with --no-validate' '
+ git send-email \
+ --from="Example <nobody@example.com>" \
+ --to=nobody@example.com \
+ --smtp-server="$(pwd)/fake.sendmail" \
+ --no-validate \
+ $patches longline.patch \
+ 2>errors
+'
+
test_done