This should not crash, but it does currently.
---
test/T562-lib-database.sh | 19 ++++++++++++++++++-
1 file changed, 18 insertions(+), 1 deletion(-)
diff --git a/test/T562-lib-database.sh b/test/T562-lib-database.sh
index c869341a..b8fba7d6 100755
--- a/test/T562-lib-database.sh
+++ b/test/T562-lib-database.sh
@@ -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
--
2.27.0
_______________________________________________
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-leave@notmuchmail.org