diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-03-21 23:09:21 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-03-21 23:09:21 -0700 |
commit | 923cc82c481a99269d397dc86f8b664ba8cb98da (patch) | |
tree | 4fbd4c8d180bf95f21722aa77de0e4f350cefe26 /t | |
parent | 8af95ca0174f05344e36d05b61844c8af4764b92 (diff) | |
parent | aaab4b9fb97c1f638d02be7b8c432a4d57f37c56 (diff) | |
download | git-923cc82c481a99269d397dc86f8b664ba8cb98da.tar.gz git-923cc82c481a99269d397dc86f8b664ba8cb98da.tar.xz |
Merge branch 'tr/maint-1.6.0-send-email-irt' into maint
* tr/maint-1.6.0-send-email-irt:
send-email: test --no-thread --in-reply-to combination
send-email: respect in-reply-to regardless of threading
Conflicts:
t/t9001-send-email.sh
Diffstat (limited to 't')
-rwxr-xr-x | t/t9001-send-email.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/t/t9001-send-email.sh b/t/t9001-send-email.sh index 4df4f965c..d7634187a 100755 --- a/t/t9001-send-email.sh +++ b/t/t9001-send-email.sh @@ -455,4 +455,15 @@ test_expect_success 'feed two files' ' test "z$(sed -n -e 2p subjects)" = "zSubject: [PATCH 2/2] add master" ' +test_expect_success 'in-reply-to but no threading' ' + git send-email \ + --dry-run \ + --from="Example <nobody@example.com>" \ + --to=nobody@example.com \ + --in-reply-to="<in-reply-id@example.com>" \ + --no-thread \ + $patches | + grep "In-Reply-To: <in-reply-id@example.com>" +' + test_done |