From ef15946defec52182c59d00c23fe6167fbca8855 Mon Sep 17 00:00:00 2001 From: David Bremner Date: Sat, 4 Jul 2020 11:22:25 -0300 Subject: [PATCH] test: add known broken for n_m_get_flag on closed db 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 | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/test/T560-lib-error.sh b/test/T560-lib-error.sh index ce3526a4..68aadcdb 100755 --- a/test/T560-lib-error.sh +++ b/test/T560-lib-error.sh @@ -437,4 +437,22 @@ cat < 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 < EXPECTED +== stdout == +1 +1 +== stderr == +EOF +test_expect_equal_file EXPECTED OUTPUT + + test_done -- 2.43.0