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
606ece94
Commit
606ece94
authored
Nov 30, 2007
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
closes #46
git-svn-id:
file:///svn/tokudb@861
c7de825b-a66e-492c-adef-691d508d4ae1
parent
42873191
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
0 deletions
+49
-0
src/tests/test_env_open_flags.c
src/tests/test_env_open_flags.c
+49
-0
No files found.
src/tests/test_env_open_flags.c
0 → 100644
View file @
606ece94
/* -*- 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_env_open_flags
(
int
env_open_flags
,
int
expectr
)
{
if
(
verbose
)
printf
(
"test_env_open_flags:%d
\n
"
,
env_open_flags
);
DB_ENV
*
env
;
int
r
;
r
=
db_env_create
(
&
env
,
0
);
assert
(
r
==
0
);
r
=
env
->
open
(
env
,
DIR
,
env_open_flags
,
0644
);
if
(
r
!=
expectr
)
printf
(
"env open flags=%x expectr=%d r=%d
\n
"
,
env_open_flags
,
expectr
,
r
);
r
=
env
->
close
(
env
,
0
);
assert
(
r
==
0
);
}
int
main
(
int
argc
,
const
char
*
argv
[])
{
parse_args
(
argc
,
argv
);
system
(
"rm -rf "
DIR
);
mkdir
(
DIR
,
0777
);
/* test flags */
test_env_open_flags
(
0
,
ENOENT
);
test_env_open_flags
(
DB_PRIVATE
,
ENOENT
);
test_env_open_flags
(
DB_PRIVATE
+
DB_CREATE
,
0
);
test_env_open_flags
(
DB_PRIVATE
+
DB_CREATE
+
DB_INIT_MPOOL
,
0
);
test_env_open_flags
(
DB_PRIVATE
+
DB_RECOVER
,
EINVAL
);
test_env_open_flags
(
DB_PRIVATE
+
DB_CREATE
+
DB_INIT_MPOOL
+
DB_RECOVER
,
EINVAL
);
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