Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
6ec256f6
Commit
6ec256f6
authored
Jan 13, 2008
by
Bradley C. Kuszmaul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extend the scope of the abort1 test
git-svn-id:
file:///svn/tokudb@1629
c7de825b-a66e-492c-adef-691d508d4ae1
parent
982644cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
109 additions
and
17 deletions
+109
-17
src/tests/test_abort1.c
src/tests/test_abort1.c
+109
-17
No files found.
src/tests/test_abort1.c
View file @
6ec256f6
...
...
@@ -3,6 +3,7 @@
/* Simple test of logging. Can I start a TokuDB with logging enabled? */
#include <assert.h>
#include <errno.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <sys/types.h>
...
...
@@ -12,34 +13,125 @@
// DIR is defined in the Makefile
DB_ENV
*
env
;
DB
*
db
;
DB_TXN
*
tid
;
#define CKERR(r) if (r!=0) fprintf(stderr, "%s:%d error %d %s\n", __FILE__, __LINE__, r, db_strerror(r)); assert(r==0);
int
main
(
int
argc
,
char
*
argv
[])
{
void
test_db_open_aborts
(
void
)
{
DB_ENV
*
env
;
DB
*
db
;
int
r
;
system
(
"rm -rf "
DIR
);
r
=
mkdir
(
DIR
,
0777
);
assert
(
r
==
0
);
r
=
db_env_create
(
&
env
,
0
);
assert
(
r
==
0
);
r
=
env
->
open
(
env
,
DIR
,
DB_INIT_LOCK
|
DB_INIT_LOG
|
DB_INIT_MPOOL
|
DB_INIT_TXN
|
DB_PRIVATE
|
DB_CREATE
,
0777
);
CKERR
(
r
);
r
=
db_create
(
&
db
,
env
,
0
);
CKERR
(
r
);
{
DB_TXN
*
tid
;
r
=
env
->
txn_begin
(
env
,
0
,
&
tid
,
0
);
assert
(
r
==
0
);
r
=
db
->
open
(
db
,
tid
,
"foo.db"
,
0
,
DB_BTREE
,
DB_CREATE
,
0777
);
CKERR
(
r
);
{
DBT
key
,
data
;
memset
(
&
key
,
0
,
sizeof
(
key
));
memset
(
&
data
,
0
,
sizeof
(
data
));
key
.
data
=
"hello"
;
key
.
size
=
6
;
data
.
data
=
"there"
;
data
.
size
=
6
;
r
=
db
->
put
(
db
,
tid
,
&
key
,
&
data
,
0
);
CKERR
(
r
);
}
r
=
tid
->
abort
(
tid
);
assert
(
r
==
0
);
}
{
struct
stat
buf
;
r
=
stat
(
DIR
"/foo.db"
,
&
buf
);
assert
(
r
!=
0
);
assert
(
errno
==
ENOENT
);
}
r
=
db
->
close
(
db
,
0
);
assert
(
r
==
0
);
r
=
env
->
close
(
env
,
0
);
assert
(
r
==
0
);
}
// Do two transactions, one commits, and one aborts. Do them concurrently.
void
test_db_put_aborts
(
void
)
{
DB_ENV
*
env
;
DB
*
db
;
int
r
;
system
(
"rm -rf "
DIR
);
r
=
mkdir
(
DIR
,
0777
);
assert
(
r
==
0
);
r
=
db_env_create
(
&
env
,
0
);
assert
(
r
==
0
);
r
=
env
->
open
(
env
,
DIR
,
DB_INIT_LOCK
|
DB_INIT_LOG
|
DB_INIT_MPOOL
|
DB_INIT_TXN
|
DB_PRIVATE
|
DB_CREATE
,
0777
);
CKERR
(
r
);
r
=
db_create
(
&
db
,
env
,
0
);
CKERR
(
r
);
r
=
env
->
txn_begin
(
env
,
0
,
&
tid
,
0
);
assert
(
r
==
0
);
r
=
db
->
open
(
db
,
tid
,
"foo.db"
,
0
,
DB_BTREE
,
DB_CREATE
,
0777
);
CKERR
(
r
);
{
DB_TXN
*
tid
;
r
=
env
->
txn_begin
(
env
,
0
,
&
tid
,
0
);
assert
(
r
==
0
);
r
=
db
->
open
(
db
,
tid
,
"foo.db"
,
0
,
DB_BTREE
,
DB_CREATE
,
0777
);
CKERR
(
r
);
r
=
tid
->
commit
(
tid
,
0
);
assert
(
r
==
0
);
}
{
DB_TXN
*
tid
;
DB_TXN
*
tid2
;
r
=
env
->
txn_begin
(
env
,
0
,
&
tid
,
0
);
assert
(
r
==
0
);
r
=
env
->
txn_begin
(
env
,
0
,
&
tid2
,
0
);
assert
(
r
==
0
);
{
DBT
key
,
data
;
memset
(
&
key
,
0
,
sizeof
(
key
));
memset
(
&
data
,
0
,
sizeof
(
data
));
key
.
data
=
"hello"
;
key
.
size
=
6
;
data
.
data
=
"there"
;
data
.
size
=
6
;
r
=
db
->
put
(
db
,
tid
,
&
key
,
&
data
,
0
);
CKERR
(
r
);
}
{
DBT
key
,
data
;
memset
(
&
key
,
0
,
sizeof
(
key
));
memset
(
&
data
,
0
,
sizeof
(
data
));
key
.
data
=
"bye"
;
key
.
size
=
4
;
data
.
data
=
"now"
;
data
.
size
=
4
;
r
=
db
->
put
(
db
,
tid
,
&
key
,
&
data
,
0
);
CKERR
(
r
);
}
r
=
tid
->
abort
(
tid
);
assert
(
r
==
0
);
r
=
tid2
->
commit
(
tid2
,
0
);
assert
(
r
==
0
);
}
// The database should exist
{
struct
stat
buf
;
r
=
stat
(
DIR
"/foo.db"
,
&
buf
);
assert
(
r
==
0
);
}
// But the item should not be in it.
{
DBT
key
,
data
;
memset
(
&
key
,
0
,
sizeof
(
key
));
memset
(
&
data
,
0
,
sizeof
(
data
));
key
.
data
=
"hello"
;
key
.
size
=
6
;
data
.
data
=
"there"
;
data
.
size
=
6
;
r
=
db
->
put
(
db
,
tid
,
&
key
,
&
data
,
0
);
CKERR
(
r
);
DB_TXN
*
tid
;
r
=
env
->
txn_begin
(
env
,
0
,
&
tid
,
0
);
assert
(
r
==
0
);
{
DBT
key
,
data
;
memset
(
&
key
,
0
,
sizeof
(
key
));
memset
(
&
data
,
0
,
sizeof
(
data
));
key
.
data
=
"hello"
;
key
.
size
=
6
;
r
=
db
->
get
(
db
,
tid
,
&
key
,
&
data
,
0
);
assert
(
r
!=
0
);
assert
(
r
==
DB_NOTFOUND
);
}
r
=
tid
->
commit
(
tid
,
0
);
assert
(
r
==
0
);
}
r
=
tid
->
abort
(
tid
);
assert
(
r
==
0
);
r
=
db
->
close
(
db
,
0
);
assert
(
r
==
0
);
r
=
env
->
close
(
env
,
0
);
assert
(
r
==
0
);
}
int
main
(
int
argc
,
char
*
argv
[])
{
test_db_open_aborts
();
test_db_put_aborts
();
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment