From a0c83e1fac88588ff6564dd82fbca29c2f5c78a5 Mon Sep 17 00:00:00 2001 From: David Bremner Date: Wed, 8 Jul 2020 21:17:08 -0300 Subject: [PATCH] test: add known broken test for n_m_reindex on closed db This is another case where the code should not call INTERNAL_ERROR. --- test/T560-lib-error.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/test/T560-lib-error.sh b/test/T560-lib-error.sh index 4805368a..8543b5dc 100755 --- a/test/T560-lib-error.sh +++ b/test/T560-lib-error.sh @@ -661,4 +661,21 @@ cat < EXPECTED EOF test_expect_equal_file EXPECTED OUTPUT +test_begin_subtest "Handle reindexing message with closed db" +test_subtest_known_broken +cat c_head2 - c_tail <<'EOF' | test_C ${MAIL_DIR} + { + notmuch_status_t status; + status = notmuch_message_reindex (message, NULL); + printf("%d\n%d\n", message != NULL, status == NOTMUCH_STATUS_XAPIAN_EXCEPTION); + } +EOF +cat < EXPECTED +== stdout == +1 +1 +== stderr == +EOF +test_expect_equal_file EXPECTED OUTPUT + test_done -- 2.43.0