From 1578e2af6a412a72346d5264d2d6707972a95b33 Mon Sep 17 00:00:00 2001 From: David Bremner Date: Wed, 8 Jul 2020 21:17:06 -0300 Subject: [PATCH] test: regression test for destroying message with closed db This should be fine because the message belongs to the database (talloc context wise). --- test/T560-lib-error.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/test/T560-lib-error.sh b/test/T560-lib-error.sh index 1ee9bd06..492c1fb5 100755 --- a/test/T560-lib-error.sh +++ b/test/T560-lib-error.sh @@ -630,4 +630,19 @@ cat < EXPECTED EOF test_expect_equal_file EXPECTED OUTPUT +test_begin_subtest "Handle destroying message with closed db" +cat c_head2 - c_tail <<'EOF' | test_C ${MAIL_DIR} + { + notmuch_message_destroy (message); + printf("%d\n%d\n", message != NULL, 1); + } +EOF +cat < EXPECTED +== stdout == +1 +1 +== stderr == +EOF +test_expect_equal_file EXPECTED OUTPUT + test_done -- 2.43.0