diff options
author | Dmitry Kurochkin <dmitry.kurochkin@gmail.com> | 2011-07-01 06:23:48 +0400 |
---|---|---|
committer | David Bremner <bremner@debian.org> | 2011-11-13 09:44:36 -0400 |
commit | 5964a760a5d26f94ea1c262a25f80725877e3445 (patch) | |
tree | 013332288aab055096a359171c698d42d2e2efa2 | |
parent | 085d45e3891a7def705082c21fc112a97d85062e (diff) |
test: do not hide test_emacs errors
Do not redirect test_emacs stderr to /dev/null. Test_emacs uses
emacsclient(1) now and it does not print unwanted messages (like
those from `message') to stderr. But it does print useful
errors, e.g. when emacs server connection fails, given expression
is not valid or undefined function is called.
-rwxr-xr-x | test/emacs | 4 | ||||
-rwxr-xr-x | test/test-lib.sh | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -256,13 +256,13 @@ test_begin_subtest "Save attachment from within emacs using notmuch-show-save-at # save as archive to test that Emacs does not re-compress .gz test_emacs '(let ((standard-input "\"attachment1.gz\"")) (notmuch-show "id:cf0c4d610911171136h1713aa59w9cf9aa31f052ad0a@mail.gmail.com") - (notmuch-show-save-attachments))' > /dev/null 2>&1 + (notmuch-show-save-attachments))' test_expect_equal_file attachment1.gz "$EXPECTED/attachment" test_begin_subtest "Save attachment from within emacs using notmuch-show-save-part" # save as archive to test that Emacs does not re-compress .gz test_emacs '(let ((standard-input "\"attachment2.gz\"")) - (notmuch-show-save-part "id:cf0c4d610911171136h1713aa59w9cf9aa31f052ad0a@mail.gmail.com" 5))' > /dev/null 2>&1 + (notmuch-show-save-part "id:cf0c4d610911171136h1713aa59w9cf9aa31f052ad0a@mail.gmail.com" 5))' test_expect_equal_file attachment2.gz "$EXPECTED/attachment" test_begin_subtest "View raw message within emacs" diff --git a/test/test-lib.sh b/test/test-lib.sh index 020bcb7a..1ea7fa97 100755 --- a/test/test-lib.sh +++ b/test/test-lib.sh @@ -394,7 +394,7 @@ emacs_deliver_message () (message-goto-body) (insert \"${body}\") $@ - (message-send-and-exit))" >/dev/null 2>&1 + (message-send-and-exit))" wait ${smtp_dummy_pid} notmuch new >/dev/null } |