mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
16 lines
369 B
C++
16 lines
369 B
C++
#include <stdio.h>
|
|
#include <xapian.h>
|
|
#include <notmuch.h>
|
|
int main (){
|
|
|
|
(void)notmuch_database_open ("fakedb",
|
|
NOTMUCH_DATABASE_MODE_READ_ONLY);
|
|
|
|
try{
|
|
(void)new Xapian::WritableDatabase ("./nonexistant", Xapian::DB_OPEN);
|
|
} catch (const Xapian::Error &error) {
|
|
printf("caught %s\n",error.get_msg().c_str());
|
|
return 0;
|
|
}
|
|
return 1;
|
|
}
|