diff options
| author | David Bremner <david@tethera.net> | 2018-09-09 22:36:16 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2018-09-14 08:54:09 -0300 |
| commit | c6ba5522a5c44312c140b5f61c5a0e011fdf94b2 (patch) | |
| tree | 85f0cf22f48ec9a5723193baf41fbc38d5e5b92a | |
| parent | 052b4d43c05641170210f1f9760f270e1ba15f6c (diff) | |
test: mark thread subqueries broken without field processors
Currently these tests just fail when notmuch is built against Xapian
1.2.x
| -rwxr-xr-x | test/T585-thread-subquery.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/T585-thread-subquery.sh b/test/T585-thread-subquery.sh index 71ced149..bf9894d3 100755 --- a/test/T585-thread-subquery.sh +++ b/test/T585-thread-subquery.sh @@ -14,6 +14,9 @@ count=$(notmuch count from:keithp and to:keithp) test_expect_equal 0 "$count" test_begin_subtest "Same query against threads" +if [ $NOTMUCH_HAVE_XAPIAN_FIELD_PROCESSOR -eq 0 ]; then + test_subtest_known_broken +fi notmuch search thread:{from:keithp} and thread:{to:keithp} | notmuch_search_sanitize > OUTPUT cat<<EOF > EXPECTED thread:XXX 2009-11-18 [7/7] Lars Kellogg-Stedman, Mikhail Gusarov, Keith Packard, Carl Worth; [notmuch] Working with Maildir storage? (inbox signed unread) @@ -21,6 +24,9 @@ EOF test_expect_equal_file EXPECTED OUTPUT test_begin_subtest "Mix thread and non-threads query" +if [ $NOTMUCH_HAVE_XAPIAN_FIELD_PROCESSOR -eq 0 ]; then + test_subtest_known_broken +fi notmuch search thread:{from:keithp} and to:keithp | notmuch_search_sanitize > OUTPUT cat<<EOF > EXPECTED thread:XXX 2009-11-18 [1/7] Lars Kellogg-Stedman| Mikhail Gusarov, Keith Packard, Carl Worth; [notmuch] Working with Maildir storage? (inbox signed unread) @@ -28,6 +34,9 @@ EOF test_expect_equal_file EXPECTED OUTPUT test_begin_subtest "Compound subquery" +if [ $NOTMUCH_HAVE_XAPIAN_FIELD_PROCESSOR -eq 0 ]; then + test_subtest_known_broken +fi notmuch search 'thread:"{from:keithp and date:2009}" and thread:{to:keithp}' | notmuch_search_sanitize > OUTPUT cat<<EOF > EXPECTED thread:XXX 2009-11-18 [7/7] Lars Kellogg-Stedman, Mikhail Gusarov, Keith Packard, Carl Worth; [notmuch] Working with Maildir storage? (inbox signed unread) @@ -35,6 +44,9 @@ EOF test_expect_equal_file EXPECTED OUTPUT test_begin_subtest "Syntax/quoting error in subquery" +if [ $NOTMUCH_HAVE_XAPIAN_FIELD_PROCESSOR -eq 0 ]; then + test_subtest_known_broken +fi notmuch search 'thread:{from:keithp and date:2009} and thread:{to:keithp}' 1>OUTPUT 2>&1 cat<<EOF > EXPECTED notmuch search: A Xapian exception occurred |
