From: David Bremner Date: Sun, 5 Jul 2020 13:00:24 +0000 (-0300) Subject: test: add broken test for n_m_remove_tag X-Git-Tag: 0.31_rc0~140 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=0fc769aa4fa45b2fcd9f1624fc45946581d6f34f test: add broken test for n_m_remove_tag Exception will be caught in next commit. --- diff --git a/test/T560-lib-error.sh b/test/T560-lib-error.sh index ccdab4be..ce83bc96 100755 --- a/test/T560-lib-error.sh +++ b/test/T560-lib-error.sh @@ -518,4 +518,21 @@ cat < EXPECTED EOF test_expect_equal_file EXPECTED OUTPUT +test_begin_subtest "Handle removing tag with closed database" +test_subtest_known_broken +cat c_head2 - c_tail <<'EOF' | test_C ${MAIL_DIR} + { + notmuch_status_t status; + status = notmuch_message_remove_tag (message, "boom"); + printf("%d\n%d\n", message != NULL, status == NOTMUCH_STATUS_XAPIAN_EXCEPTION); + } +EOF +cat < EXPECTED +== stdout == +1 +1 +== stderr == +EOF +test_expect_equal_file EXPECTED OUTPUT + test_done