aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2023-03-30 07:56:17 -0300
committerDavid Bremner <david@tethera.net>2023-03-30 07:56:17 -0300
commit336334996750240608d5f29ed5dd8e40a69c4d79 (patch)
tree2bd85d73a2f0c779e65b793b3cf9f98c591ecf65 /test
parente191d3c574e91199e524acbf6d7199bd58fd73d5 (diff)
test: reveal notmuch_message_remove_all_properties as broken
Close and re-open the database to show that the removal is not committed to the database.
Diffstat (limited to 'test')
-rwxr-xr-xtest/T610-message-property.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/T610-message-property.sh b/test/T610-message-property.sh
index 1bc423b5..afcda4a8 100755
--- a/test/T610-message-property.sh
+++ b/test/T610-message-property.sh
@@ -152,8 +152,19 @@ EOF
test_expect_equal_file EXPECTED OUTPUT
test_begin_subtest "notmuch_message_remove_all_properties"
+test_subtest_known_broken
cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR}
EXPECT0(notmuch_message_remove_all_properties (message, NULL));
+EXPECT0(notmuch_database_destroy(db));
+EXPECT0(notmuch_database_open_with_config (argv[1],
+ NOTMUCH_DATABASE_MODE_READ_WRITE,
+ "", NULL, &db, &msg));
+if (msg) fputs (msg, stderr);
+EXPECT0(notmuch_database_find_message(db, "4EFC743A.3060609@april.org", &message));
+if (message == NULL) {
+ fprintf (stderr, "unable to find message");
+ exit (1);
+}
print_properties (message, "", FALSE);
EOF
cat <<'EOF' >EXPECTED