notmuch/test/symbol-test.cc

26 lines
551 B
C++
Raw Normal View History

#include <stdio.h>
#include <stdlib.h>
#include <xapian.h>
#include <notmuch.h>
int main(int argc, char** argv) {
notmuch_database_t *notmuch;
char *message = NULL;
if (notmuch_database_open_verbose (argv[1], 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(argv[2], 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;
}