]> git.notmuchmail.org Git - notmuch/commitdiff
test: add known broken test for n_m_get_tags
authorDavid Bremner <david@tethera.net>
Sun, 5 Jul 2020 13:00:18 +0000 (10:00 -0300)
committerDavid Bremner <david@tethera.net>
Tue, 14 Jul 2020 10:12:52 +0000 (07:12 -0300)
This will be fixed in the next commit.

test/T560-lib-error.sh

index c043e35eed55f3cf84ed7aea6a8037b7b6b4961f..05d41615584b0fc6324ffc623038fda3323b3c49 100755 (executable)
@@ -470,5 +470,22 @@ cat <<EOF > EXPECTED
 EOF
 test_expect_equal_file EXPECTED OUTPUT
 
 EOF
 test_expect_equal_file EXPECTED OUTPUT
 
+test_begin_subtest "Handle getting tags from closed database"
+test_subtest_known_broken
+cat c_head2 - c_tail <<'EOF' | test_C ${MAIL_DIR}
+    {
+        notmuch_tags_t *result;
+        result = notmuch_message_get_tags (message);
+        printf("%d\n%d\n", message != NULL, result == NULL);
+    }
+EOF
+cat <<EOF > EXPECTED
+== stdout ==
+1
+1
+== stderr ==
+EOF
+test_expect_equal_file EXPECTED OUTPUT
+
 
 test_done
 
 test_done