mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
test: replace deprecated use of notmuch_database_create
Like notmuch_database_open, we need to conditionally print the error message.
This commit is contained in:
parent
32f299fe13
commit
eab665c573
1 changed files with 12 additions and 3 deletions
|
@ -60,7 +60,10 @@ int main (int argc, char** argv)
|
|||
{
|
||||
notmuch_database_t *db;
|
||||
notmuch_status_t stat;
|
||||
stat = notmuch_database_create ("./nonexistent/foo", &db);
|
||||
char *msg = NULL;
|
||||
|
||||
stat = notmuch_database_create_with_config ("./nonexistent/foo", "", NULL, &db, &msg);
|
||||
if (msg) fputs (msg, stderr);
|
||||
}
|
||||
EOF
|
||||
cat <<'EOF' >EXPECTED
|
||||
|
@ -99,7 +102,10 @@ test_C <<'EOF'
|
|||
int main (int argc, char** argv)
|
||||
{
|
||||
notmuch_status_t stat;
|
||||
stat = notmuch_database_create (NULL, NULL);
|
||||
char *msg;
|
||||
|
||||
stat = notmuch_database_create_with_config (NULL, "", NULL, NULL, &msg);
|
||||
if (msg) fputs (msg, stderr);
|
||||
}
|
||||
EOF
|
||||
cat <<'EOF' >EXPECTED
|
||||
|
@ -117,7 +123,10 @@ int main (int argc, char** argv)
|
|||
{
|
||||
notmuch_database_t *db;
|
||||
notmuch_status_t stat;
|
||||
stat = notmuch_database_create (argv[1], &db);
|
||||
char *msg;
|
||||
|
||||
stat = notmuch_database_create_with_config (argv[1], "", NULL, &db, &msg);
|
||||
if (msg) fputs (msg, stderr);
|
||||
}
|
||||
EOF
|
||||
cat <<'EOF' >EXPECTED
|
||||
|
|
Loading…
Reference in a new issue