diff options
| author | David Bremner <david@tethera.net> | 2020-07-04 11:06:37 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2020-07-13 07:19:22 -0300 |
| commit | 2c2ba7d6e2bbdcb055901a97704778d1d823e7d4 (patch) | |
| tree | 72c83949d7c407eaf8c9d885e28913fe65f578a3 | |
| parent | a606cba32b017f947c2d9f32477df69645c1c383 (diff) | |
test: add known broken test for n_m_get_filenames
This will be fixed in the next commit
| -rwxr-xr-x | test/T560-lib-error.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/T560-lib-error.sh b/test/T560-lib-error.sh index 57c74a2b..8d9b4cc0 100755 --- a/test/T560-lib-error.sh +++ b/test/T560-lib-error.sh @@ -421,4 +421,21 @@ cat <<EOF > EXPECTED EOF test_expect_equal_file EXPECTED OUTPUT +test_begin_subtest "Handle getting all message filenames from closed database" +test_subtest_known_broken +cat c_head2 - c_tail <<'EOF' | test_C ${MAIL_DIR} + { + notmuch_filenames_t *filenames; + filenames = notmuch_message_get_filenames (message); + printf("%d\n%d\n", message != NULL, filenames == NULL); + } +EOF +cat <<EOF > EXPECTED +== stdout == +1 +1 +== stderr == +EOF +test_expect_equal_file EXPECTED OUTPUT + test_done |
