notmuch/test/symbol-test.cc

19 lines
394 B
C++
Raw Normal View History

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