aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Patrick Totzke <patricktotzke@googlemail.com>2012-01-02 14:51:26 +0000
committerGravatar Sebastian Spaeth <Sebastian@SSpaeth.de>2012-01-08 13:46:25 +0100
commitaadf202dd57f71e93cd598a1c31bd6fb82b011f7 (patch)
tree4e78f229a401a11b9ffec1761fed8288315debbb /test
parent228d8c0528311fa0e6c7ef675530b653019946de (diff)
clean up "compare thread ids" python test
This makes the test script open the database in READ_ONLY mode and use the libraries own sorting methods instead of "sort".
Diffstat (limited to 'test')
-rwxr-xr-xtest/python7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/python b/test/python
index c3aa7266..c318cc10 100755
--- a/test/python
+++ b/test/python
@@ -7,11 +7,12 @@ add_email_corpus
test_begin_subtest "compare thread ids"
test_python <<EOF
import notmuch
-db = notmuch.Database(mode=notmuch.Database.MODE.READ_WRITE)
+db = notmuch.Database(mode=notmuch.Database.MODE.READ_ONLY)
q_new = notmuch.Query(db, 'tag:inbox')
+q_new.set_sort(notmuch.Query.SORT.OLDEST_FIRST)
for t in q_new.search_threads():
print t.get_thread_id()
EOF
-notmuch search --output=threads tag:inbox | sed s/^thread:// | sort > EXPECTED
-test_expect_equal_file <(sort OUTPUT) EXPECTED
+notmuch search --sort=oldest-first --output=threads tag:inbox | sed s/^thread:// > EXPECTED
+test_expect_equal_file OUTPUT EXPECTED
test_done