notmuch/test/symbol-test.cc

26 lines
539 B
C++
Raw Normal View History

#include <stdio.h>
#include <stdlib.h>
#include <xapian.h>
#include <notmuch.h>
2011-11-25 16:34:48 +01:00
int main() {
notmuch_database_t *notmuch;
char *message = NULL;
if (notmuch_database_open_verbose ("fakedb", NOTMUCH_DATABASE_MODE_READ_ONLY, &notmuch, &message))
if (message) {
fputs (message, stderr);
free (message);
}
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;
}