mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
test/insert: check that indexing errors are accepted with --keep
This is overkill for the current code path, but should provide some robustness for future changes in error handling.
This commit is contained in:
parent
dc20a0eedc
commit
c48b12f18a
1 changed files with 5 additions and 0 deletions
|
@ -202,6 +202,11 @@ test_begin_subtest "error exit when add_message returns $code"
|
||||||
gdb --batch-silent --return-child-result -x index-file-$code.gdb \
|
gdb --batch-silent --return-child-result -x index-file-$code.gdb \
|
||||||
--args notmuch insert < $gen_msg_filename
|
--args notmuch insert < $gen_msg_filename
|
||||||
test_expect_equal $? 1
|
test_expect_equal $? 1
|
||||||
|
|
||||||
|
test_begin_subtest "success exit with --keep when add_message returns $code"
|
||||||
|
gdb --batch-silent --return-child-result -x index-file-$code.gdb \
|
||||||
|
--args notmuch insert --keep < $gen_msg_filename
|
||||||
|
test_expect_equal $? 0
|
||||||
done
|
done
|
||||||
|
|
||||||
test_done
|
test_done
|
||||||
|
|
Loading…
Reference in a new issue