diff options
| author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2017-12-05 21:33:22 -0500 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2017-12-19 07:14:03 -0400 |
| commit | 776a2982ae5f3fd8accfae173a32038a01b79a57 (patch) | |
| tree | 9d506efdf87cceff07a02becb49d1957362d6cf5 | |
| parent | 660f1a5a3373f098f6df8912ef6b62fa2b08d8f0 (diff) | |
test: searching by absolute date is broken without Xapian FieldProcessor
Previously, the test suite had simply silently skipped the absolute
date test if we're using an archaic version of Xapian. For
correctness, we should instead mark the test as broken.
This also changes from string to numeric comparison when checking
NOMTUCH_HAVE_XAPIAN_FIELD_PROCESSOR for consistency with other tests.
| -rwxr-xr-x | test/T500-search-date.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/T500-search-date.sh b/test/T500-search-date.sh index 5c5b99a0..f84b0962 100755 --- a/test/T500-search-date.sh +++ b/test/T500-search-date.sh @@ -12,11 +12,12 @@ test_begin_subtest "Absolute date range with 'same' operator" output=$(notmuch search date:2010-12-16..! | notmuch_search_sanitize) test_expect_equal "$output" "thread:XXX 2010-12-16 [1/1] Olivier Berger; Essai accentué (inbox unread)" -if [ "${NOTMUCH_HAVE_XAPIAN_FIELD_PROCESSOR}" = "1" ]; then - test_begin_subtest "Absolute date field" - output=$(notmuch search date:2010-12-16 | notmuch_search_sanitize) - test_expect_equal "$output" "thread:XXX 2010-12-16 [1/1] Olivier Berger; Essai accentué (inbox unread)" +test_begin_subtest "Absolute date field" +output=$(notmuch search date:2010-12-16 | notmuch_search_sanitize) +if [ $NOTMUCH_HAVE_XAPIAN_FIELD_PROCESSOR -ne 1 ]; then + test_subtest_known_broken fi +test_expect_equal "$output" "thread:XXX 2010-12-16 [1/1] Olivier Berger; Essai accentué (inbox unread)" test_begin_subtest "Absolute time range with TZ" notmuch search date:18-Nov-2009_02:19:26-0800..2009-11-18_04:49:52-06:00 | notmuch_search_sanitize > OUTPUT |
