summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorAntonio Ospite <ospite@studenti.unina.it>2011-01-04 20:56:58 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-01-04 23:46:29 (GMT)
commitcc7e81674b9fef94e64fe3e8c134f1a27ce2fa25 (patch)
tree5574172f95d0d13d83c228377b64729f5a84bf4e /t
parentdb54c8e710397fbd58892daead6181b424d6d70a (diff)
downloadgit-cc7e81674b9fef94e64fe3e8c134f1a27ce2fa25.zip
git-cc7e81674b9fef94e64fe3e8c134f1a27ce2fa25.tar.gz
git-cc7e81674b9fef94e64fe3e8c134f1a27ce2fa25.tar.bz2
t/t9001-send-email.sh: fix '&&' chain in some tests
t/README recommends chaining test assertions. Signed-off-by: Antonio Ospite <ospite@studenti.unina.it> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t9001-send-email.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/t9001-send-email.sh b/t/t9001-send-email.sh
index 5e48318..2fb22d0 100755
--- a/t/t9001-send-email.sh
+++ b/t/t9001-send-email.sh
@@ -265,7 +265,7 @@ test_expect_success $PREREQ 'Author From: in message body' '
--to=nobody@example.com \
--smtp-server="$(pwd)/fake.sendmail" \
$patches &&
- sed "1,/^\$/d" < msgtxt1 > msgbody1
+ sed "1,/^\$/d" < msgtxt1 > msgbody1 &&
grep "From: A <author@example.com>" msgbody1
'
@@ -276,7 +276,7 @@ test_expect_success $PREREQ 'Author From: not in message body' '
--to=nobody@example.com \
--smtp-server="$(pwd)/fake.sendmail" \
$patches &&
- sed "1,/^\$/d" < msgtxt1 > msgbody1
+ sed "1,/^\$/d" < msgtxt1 > msgbody1 &&
! grep "From: A <author@example.com>" msgbody1
'
@@ -298,7 +298,7 @@ test_expect_success $PREREQ 'Invalid In-Reply-To' '
--in-reply-to=" " \
--smtp-server="$(pwd)/fake.sendmail" \
$patches \
- 2>errors
+ 2>errors &&
! grep "^In-Reply-To: < *>" msgtxt1
'
@@ -617,7 +617,7 @@ EOF
"
test_expect_success $PREREQ '--suppress-cc=sob' '
- git config --unset sendemail.cccmd
+ test_might_fail git config --unset sendemail.cccmd &&
test_suppression sob
'