test: regression test for destroying message with closed db

This should be fine because the message belongs to the
database (talloc context wise).
This commit is contained in:
David Bremner 2020-07-08 21:17:06 -03:00
parent 9244f58860
commit 1578e2af6a

View file

@ -630,4 +630,19 @@ cat <<EOF > 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 <<EOF > EXPECTED
== stdout ==
1
1
== stderr ==
EOF
test_expect_equal_file EXPECTED OUTPUT
test_done