mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
test: mark two tests broken on machines with 32 bit time_t
I haven't traced the code path as exhaustively for the SMIME test, but the expiry date in question is larger then representable in a signed 32 bit integer.
This commit is contained in:
parent
b96ccdf336
commit
b46d842782
2 changed files with 6 additions and 0 deletions
|
@ -65,6 +65,9 @@ test_expect_equal_json "$output" "[{\"thread\": \"XXX\",
|
|||
\"unread\"]}]"
|
||||
|
||||
test_begin_subtest "Search message: json, 64-bit timestamp"
|
||||
if [ $NOTMUCH_HAVE_64BIT_TIME_T -ne 1 ]; then
|
||||
test_subtest_known_broken
|
||||
fi
|
||||
add_message "[subject]=\"json-search-64bit-timestamp-subject\"" "[date]=\"Tue, 01 Jan 2999 12:00:00 -0000\"" "[body]=\"json-search-64bit-timestamp-message\""
|
||||
output=$(notmuch search --format=json "json-search-64bit-timestamp-message" | notmuch_search_sanitize)
|
||||
test_expect_equal_json "$output" "[{\"thread\": \"XXX\",
|
||||
|
|
|
@ -176,6 +176,9 @@ output=$(notmuch show --format=json id:smime-onepart-signed@protected-headers.ex
|
|||
test_valid_json "$output"
|
||||
|
||||
test_begin_subtest "Verify signature on PKCS#7 SignedData message"
|
||||
if [ $NOTMUCH_HAVE_64BIT_TIME_T -ne 1 ]; then
|
||||
test_subtest_known_broken
|
||||
fi
|
||||
output=$(notmuch show --format=json id:smime-onepart-signed@protected-headers.example)
|
||||
|
||||
test_json_nodes <<<"$output" \
|
||||
|
|
Loading…
Reference in a new issue