2011-06-22 13:58:01 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <xapian.h>
|
|
|
|
#include <notmuch.h>
|
|
|
|
|
|
|
|
|
2011-11-25 16:34:48 +01:00
|
|
|
int main() {
|
2012-04-30 18:25:33 +02:00
|
|
|
notmuch_database_t *notmuch;
|
|
|
|
notmuch_database_open("fakedb", NOTMUCH_DATABASE_MODE_READ_ONLY, ¬much);
|
2011-11-25 16:34:48 +01:00
|
|
|
|
|
|
|
try {
|
|
|
|
(void) new Xapian::WritableDatabase("./nonexistant", Xapian::DB_OPEN);
|
2011-06-22 13:58:01 +02:00
|
|
|
} catch (const Xapian::Error &error) {
|
2011-11-25 16:34:48 +01:00
|
|
|
printf("caught %s\n", error.get_msg().c_str());
|
2011-06-22 13:58:01 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2011-11-25 16:34:48 +01:00
|
|
|
|
2011-06-22 13:58:01 +02:00
|
|
|
return 1;
|
|
|
|
}
|