aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/test-lib.sh
diff options
context:
space:
mode:
authorGravatar Dmitry Kurochkin <dmitry.kurochkin@gmail.com>2011-06-28 08:45:05 +0400
committerGravatar Carl Worth <cworth@cworth.org>2011-06-28 15:06:47 -0700
commitcaeb05493d5d0c97859cfd6303d8c64071dd69ea (patch)
tree525870edd85d34fe16fa1d3d957b44c9d79f3bf4 /test/test-lib.sh
parentdd7572392145ed00f938e276d38d2ab3a1427055 (diff)
test: wrap and indent test_emacs calls
Most test_emacs calls have long arguments that consist of many expressions. Putting them on a single line makes it hard to read and produces poor diff when they are changed. The patch puts every expression in test_emacs calls on a separate line.
Diffstat (limited to 'test/test-lib.sh')
-rwxr-xr-xtest/test-lib.sh14
1 files changed, 13 insertions, 1 deletions
diff --git a/test/test-lib.sh b/test/test-lib.sh
index 5f619603..ad1506c9 100755
--- a/test/test-lib.sh
+++ b/test/test-lib.sh
@@ -394,7 +394,19 @@ emacs_deliver_message ()
mkdir -p "$MAIL_DIR"/sent/{cur,new,tmp}
../smtp-dummy sent_message &
smtp_dummy_pid=$!
- test_emacs "(setq message-send-mail-function 'message-smtpmail-send-it) (setq smtpmail-smtp-server \"localhost\") (setq smtpmail-smtp-service \"25025\") (notmuch-hello) (notmuch-mua-mail) (message-goto-to) (insert \"test_suite@notmuchmail.org\nDate: 01 Jan 2000 12:00:00 -0000\") (message-goto-subject) (insert \"${subject}\") (message-goto-body) (insert \"${body}\") $@ (message-send-and-exit)" >/dev/null 2>&1
+ test_emacs "(setq message-send-mail-function 'message-smtpmail-send-it)
+ (setq smtpmail-smtp-server \"localhost\")
+ (setq smtpmail-smtp-service \"25025\")
+ (notmuch-hello)
+ (notmuch-mua-mail)
+ (message-goto-to)
+ (insert \"test_suite@notmuchmail.org\nDate: 01 Jan 2000 12:00:00 -0000\")
+ (message-goto-subject)
+ (insert \"${subject}\")
+ (message-goto-body)
+ (insert \"${body}\")
+ $@
+ (message-send-and-exit)" >/dev/null 2>&1
wait ${smtp_dummy_pid}
notmuch new >/dev/null
}