aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2020-07-05 10:00:24 -0300
committerDavid Bremner <david@tethera.net>2020-07-14 07:31:45 -0300
commit0fc769aa4fa45b2fcd9f1624fc45946581d6f34f (patch)
treeaa06e9c14ba0159f0482ea88bfa851b6aac8c735 /test
parent33dd5fdc6997faee43aa0f79693fc4a8b5143756 (diff)
test: add broken test for n_m_remove_tag
Exception will be caught in next commit.
Diffstat (limited to 'test')
-rwxr-xr-xtest/T560-lib-error.sh17
1 files changed, 17 insertions, 0 deletions
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 <<EOF > 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 <<EOF > EXPECTED
+== stdout ==
+1
+1
+== stderr ==
+EOF
+test_expect_equal_file EXPECTED OUTPUT
+
test_done