mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-03-14 03:25:15 +01:00
test: add known broken test for n_d_get_version on closed db
This should not crash, but it does currently.
This commit is contained in:
parent
f3a56b5f6d
commit
920dc56e60
1 changed files with 18 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
test_description="error reporting for library"
|
||||
test_description="notmuch_database_* API"
|
||||
|
||||
. $(dirname "$0")/test-lib.sh || exit 1
|
||||
|
||||
|
@ -67,4 +67,21 @@ MAIL_DIR
|
|||
EOF
|
||||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
||||
test_begin_subtest "get version with closed db"
|
||||
test_subtest_known_broken
|
||||
cat c_head - c_tail <<'EOF' | test_C ${MAIL_DIR}
|
||||
{
|
||||
unsigned int version;
|
||||
EXPECT0(notmuch_database_close (db));
|
||||
version = notmuch_database_get_version (db);
|
||||
printf ("%u\n", version);
|
||||
}
|
||||
EOF
|
||||
cat <<EOF > EXPECTED
|
||||
== stdout ==
|
||||
0
|
||||
== stderr ==
|
||||
EOF
|
||||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
||||
test_done
|
||||
|
|
Loading…
Add table
Reference in a new issue