From: David Bremner Date: Fri, 3 Oct 2014 21:19:00 +0000 (+0200) Subject: test/insert: check that indexing errors are accepted with --keep X-Git-Tag: address-command-v2~44 X-Git-Url: http://rtime.felk.cvut.cz/gitweb/notmuch.git/commitdiff_plain/c48b12f18a4b9e0b46ec40ad7bab19a8086493fd 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. --- diff --git a/test/T070-insert.sh b/test/T070-insert.sh index be8060e6..80a22c1b 100755 --- a/test/T070-insert.sh +++ b/test/T070-insert.sh @@ -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 \ --args notmuch insert < $gen_msg_filename 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 test_done