From: David Bremner Date: Sun, 5 Jul 2020 13:00:18 +0000 (-0300) Subject: test: add known broken test for n_m_get_tags X-Git-Tag: 0.31_rc0~146 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=d284dc00dafb144065bc50242e15e84d4579e3fd test: add known broken test for n_m_get_tags This will be fixed in the next commit. --- diff --git a/test/T560-lib-error.sh b/test/T560-lib-error.sh index c043e35e..05d41615 100755 --- a/test/T560-lib-error.sh +++ b/test/T560-lib-error.sh @@ -470,5 +470,22 @@ cat < EXPECTED 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 < EXPECTED +== stdout == +1 +1 +== stderr == +EOF +test_expect_equal_file EXPECTED OUTPUT + test_done