diff options
| author | David Bremner <david@tethera.net> | 2016-01-29 07:53:11 -0400 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2016-03-14 19:54:32 -0300 |
| commit | bfccfc31c7cf5d6e24a68052c002c55eb94a7ba7 (patch) | |
| tree | 5a157cd0b08ffd8897d04300da0e93edb6b6ec10 /test | |
| parent | 342910a2806aee312f61280c3329cac24c26cfd4 (diff) | |
test: replace single giant term with large phrase
We only need a long string, not a single long term to trigger batch
mode. The giant term triggers a bug/incompatibility in Xapian 1.3.4
that throws an exception because it is longer than the Xapian term size
limit.
Diffstat (limited to 'test')
| -rwxr-xr-x | test/T310-emacs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/T310-emacs.sh b/test/T310-emacs.sh index 22ca71c0..43b99736 100755 --- a/test/T310-emacs.sh +++ b/test/T310-emacs.sh @@ -130,7 +130,7 @@ test_expect_equal "$output" "thread:XXX 2009-11-18 [4/4] Jjgod Jiang, Alexande test_begin_subtest "Add tag (large query)" # We use a long query to force us into batch mode and use a funny tag # that requires escaping for batch tagging. -test_emacs "(notmuch-tag (concat \"$os_x_darwin_thread\" \" or \" (make-string notmuch-tag-argument-limit ?x)) (list \"+tag-from-%-large-query\"))" +test_emacs "(notmuch-tag (concat \"$os_x_darwin_thread\" \" or \" (mapconcat #'identity (make-list notmuch-tag-argument-limit \"x\") \"-\")) (list \"+tag-from-%-large-query\"))" output=$(notmuch search $os_x_darwin_thread | notmuch_search_sanitize) test_expect_equal "$output" "thread:XXX 2009-11-18 [4/4] Jjgod Jiang, Alexander Botero-Lowry; [notmuch] Mac OS X/Darwin compatibility issues (inbox tag-from-%-large-query unread)" notmuch tag -tag-from-%-large-query $os_x_darwin_thread |
