]> git.notmuchmail.org Git - notmuch/commitdiff
test: add known broken for n_m_get_flag on closed db
authorDavid Bremner <david@tethera.net>
Sat, 4 Jul 2020 14:22:25 +0000 (11:22 -0300)
committerDavid Bremner <david@tethera.net>
Mon, 13 Jul 2020 10:19:22 +0000 (07:19 -0300)
Exception caught in next commit. Note that FLAG_GHOST is the only one
that triggers the I/O code path.

test/T560-lib-error.sh

index ce3526a406b5f88e481bce2f76b01e38efe4bb06..68aadcdbc0137d845ea69c2ddb32505c19e39565 100755 (executable)
@@ -437,4 +437,22 @@ cat <<EOF > EXPECTED
 EOF
 test_expect_equal_file EXPECTED OUTPUT
 
+test_begin_subtest "Handle getting ghost flag from closed database"
+test_subtest_known_broken
+cat c_head2 - c_tail <<'EOF' | test_C ${MAIL_DIR}
+    {
+        notmuch_bool_t result;
+        result = notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_GHOST);
+        printf("%d\n%d\n", message != NULL, result == FALSE);
+    }
+EOF
+cat <<EOF > EXPECTED
+== stdout ==
+1
+1
+== stderr ==
+EOF
+test_expect_equal_file EXPECTED OUTPUT
+
+
 test_done