diff options
| author | David Bremner <david@tethera.net> | 2018-04-13 22:46:09 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2018-04-23 23:00:20 -0300 |
| commit | 4e085b6d92909b8f6d4a4b18ccd97fac8b7df620 (patch) | |
| tree | aa4f1bac50db06e44ef84af6ccd33d4cb537333b /test/T050-new.sh | |
| parent | 9293d6da27494d7b607c945c6678bc890749b94f (diff) | |
test: add known broken test for thread ordering from a loop
The previous loop handling code chooses the last message in the
message list, which turns out to be the last in date order.
See the comment in _notmuch_thread_create.
Diffstat (limited to 'test/T050-new.sh')
| -rwxr-xr-x | test/T050-new.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/T050-new.sh b/test/T050-new.sh index f3bfe7b1..320a7646 100755 --- a/test/T050-new.sh +++ b/test/T050-new.sh @@ -358,4 +358,14 @@ add_email_corpus broken test_begin_subtest "reference loop does not crash" test_expect_code 0 "notmuch show --format=json id:mid-loop-12@example.org id:mid-loop-21@example.org > OUTPUT" +test_begin_subtest "reference loop ordered by date" +test_subtest_known_broken +threadid=$(notmuch search --output=threads id:mid-loop-12@example.org) +notmuch show --format=mbox $threadid | grep '^Date' > OUTPUT +cat <<EOF > EXPECTED +Date: Thu, 16 Jun 2016 22:14:41 -0400 +Date: Fri, 17 Jun 2016 22:14:41 -0400 +EOF +test_expect_equal_file EXPECTED OUTPUT + test_done |
