From: Austin Clements Date: Thu, 23 Oct 2014 12:30:39 +0000 (-0400) Subject: lib: Enable ghost messages feature X-Git-Tag: 0.19_rc1~33 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=ee476f1e7616fa53c492b8077b55af35662eec82 lib: Enable ghost messages feature This fixes the broken thread order test. --- diff --git a/lib/database-private.h b/lib/database-private.h index e2e4bc87..15e03ccf 100644 --- a/lib/database-private.h +++ b/lib/database-private.h @@ -166,7 +166,7 @@ struct _notmuch_database { * databases will have it). */ #define NOTMUCH_FEATURES_CURRENT \ (NOTMUCH_FEATURE_FILE_TERMS | NOTMUCH_FEATURE_DIRECTORY_DOCS | \ - NOTMUCH_FEATURE_BOOL_FOLDER) + NOTMUCH_FEATURE_BOOL_FOLDER | NOTMUCH_FEATURE_GHOSTS) /* Return the list of terms from the given iterator matching a prefix. * The prefix will be stripped from the strings in the returned list. diff --git a/test/T260-thread-order.sh b/test/T260-thread-order.sh index b435d79f..99f58336 100755 --- a/test/T260-thread-order.sh +++ b/test/T260-thread-order.sh @@ -30,7 +30,6 @@ expected=$(for ((i = 0; i < $nthreads; i++)); do test_expect_equal "$output" "$expected" test_begin_subtest "Messages with all parents get linked in all delivery orders" -test_subtest_known_broken # Here we do the same thing as the previous test, but each message # references all of its parents. Since every message references the # root of the thread, each thread should always be fully joined. This