/* -*- mode: C; c-basic-offset: 4 -*- */ #ident "Copyright (c) 2007 Tokutek Inc. All rights reserved." #include <stdio.h> #include <stdlib.h> #include <assert.h> #include <unistd.h> #include <string.h> #include <errno.h> #include <sys/stat.h> #include <arpa/inet.h> #include <db.h> #include "test.h" void test_db_set_flags(int flags, int expectr, int flags2, int expectr2) { if (verbose) printf("test_db_set_flags:%d %d %d %d\n", flags, expectr, flags2, expectr2); DB_ENV * const null_env = 0; DB *db; DB_TXN * const null_txn = 0; const char * const fname = ENVDIR "/" "test.db.set.flags.brt"; int r; unlink(fname); r = db_create(&db, null_env, 0); assert(r == 0); db->set_errfile(db,0); // Turn off those annoying errors r = db->set_flags(db, flags); assert(r == expectr); r = db->open(db, null_txn, fname, "main", DB_BTREE, DB_CREATE, 0666); assert(r == 0); r = db->set_flags(db, flags2); assert(r == expectr2); r = db->close(db, 0); assert(r == 0); } int main(int argc, const char *argv[]) { parse_args(argc, argv); system("rm -rf " ENVDIR); mkdir(ENVDIR, 0777); test_db_set_flags(0, 0, 0, 0); test_db_set_flags(0, 0, DB_DUP, EINVAL); test_db_set_flags(DB_DUP+DB_DUPSORT, 0, DB_DUP+DB_DUPSORT, EINVAL); test_db_set_flags(DB_DUP+DB_DUPSORT, 0, 0, 0); return 0; }