mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
test: don't use dump and restore in a pipeline
This has been wrong since bbbdf0478e
, but the race condition was not
previously been (often?) triggered in the tests. With the DB_RETRY_LOCK
patches, it manifests itself as a deadlock.
This commit is contained in:
parent
38f0d44a82
commit
496dccf44f
1 changed files with 4 additions and 2 deletions
|
@ -135,7 +135,8 @@ test_expect_equal_file EXPECTED OUT
|
|||
|
||||
test_begin_subtest "format=batch-tag, # round-trip"
|
||||
notmuch dump --format=sup | sort > EXPECTED.$test_count
|
||||
notmuch dump --format=batch-tag | notmuch restore --format=batch-tag
|
||||
notmuch dump --format=batch-tag > DUMPFILE
|
||||
notmuch restore --format=batch-tag < DUMPFILE
|
||||
notmuch dump --format=sup | sort > OUTPUT.$test_count
|
||||
test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count
|
||||
|
||||
|
@ -212,7 +213,8 @@ test_expect_equal_file EXPECTED OUTPUT.$test_count
|
|||
|
||||
test_begin_subtest 'format=batch-tag, round trip with strange tags'
|
||||
notmuch dump --format=batch-tag > EXPECTED.$test_count
|
||||
notmuch dump --format=batch-tag | notmuch restore --format=batch-tag
|
||||
notmuch dump --format=batch-tag > DUMPFILE
|
||||
notmuch restore --format=batch-tag < DUMPFILE
|
||||
notmuch dump --format=batch-tag > OUTPUT.$test_count
|
||||
test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count
|
||||
|
||||
|
|
Loading…
Reference in a new issue