mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
Another abort test. Addresses #11.
git-svn-id: file:///svn/tokudb@3040 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
parent
0f57792a0c
commit
74947caa9b
1 changed files with 58 additions and 0 deletions
58
src/tests/test_txn_commit8.c
Normal file
58
src/tests/test_txn_commit8.c
Normal file
|
@ -0,0 +1,58 @@
|
|||
#include <stdio.h>
|
||||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <string.h>
|
||||
#include <sys/stat.h>
|
||||
#include <db.h>
|
||||
#include "test.h"
|
||||
|
||||
// like test_txn_abort8.c except commit
|
||||
void test_abort_close(void) {
|
||||
|
||||
system("rm -rf " ENVDIR);
|
||||
mkdir(ENVDIR, 0777);
|
||||
|
||||
int r;
|
||||
DB_ENV *env;
|
||||
r = db_env_create(&env, 0); assert(r == 0);
|
||||
r = env->set_data_dir(env, ENVDIR);
|
||||
r = env->set_lg_dir(env, ENVDIR);
|
||||
env->set_errfile(env, stdout);
|
||||
r = env->open(env, 0, DB_INIT_MPOOL + DB_INIT_LOG + DB_INIT_LOCK + DB_INIT_TXN + DB_PRIVATE + DB_CREATE, 0777);
|
||||
if (r != 0) printf("%s:%d:%d:%s\n", __FILE__, __LINE__, r, db_strerror(r));
|
||||
assert(r == 0);
|
||||
|
||||
DB_TXN *txn = 0;
|
||||
r = env->txn_begin(env, 0, &txn, 0); assert(r == 0);
|
||||
|
||||
DB *db;
|
||||
r = db_create(&db, env, 0); assert(r == 0);
|
||||
r = db->open(db, txn, "test.db", 0, DB_BTREE, DB_CREATE, 0777); assert(r == 0);
|
||||
|
||||
{
|
||||
struct stat statbuf;
|
||||
r = stat(ENVDIR "/test.db", &statbuf);
|
||||
assert(r==0);
|
||||
}
|
||||
|
||||
// Close before commit
|
||||
r = db->close(db, 0);
|
||||
|
||||
r = txn->commit(txn, 0); assert(r == 0);
|
||||
|
||||
r = env->close(env, 0); assert(r == 0);
|
||||
|
||||
{
|
||||
struct stat statbuf;
|
||||
r = stat(ENVDIR "/test.db", &statbuf);
|
||||
assert(r==0);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
test_abort_close();
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Reference in a new issue