Commit 5f07bbf7 authored by Bradley C. Kuszmaul's avatar Bradley C. Kuszmaul

Make the test_error more comprehensive. Addresses #445.

git-svn-id: file:///svn/tokudb@2407 c7de825b-a66e-492c-adef-691d508d4ae1
parent 712fcc5d
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
#include <stdio.h> #include <stdio.h>
#include "test.h" #include "test.h"
const char *expect_errpfx=0; char const* expect_errpfx;
int n_handle_error=0; int n_handle_error=0;
void handle_error (const DB_ENV *dbenv, const char *errpfx, const char *msg) { void handle_error (const DB_ENV *dbenv, const char *errpfx, const char *msg) {
...@@ -35,7 +35,8 @@ int main (int argc, const char *argv[]) { ...@@ -35,7 +35,8 @@ int main (int argc, const char *argv[]) {
r = env->close(env, 0); assert(r==0); r = env->close(env, 0); assert(r==0);
} }
int do_errfile, do_errcall; int do_errfile, do_errcall,do_errpfx;
for (do_errpfx=0; do_errpfx<2; do_errpfx++) {
for (do_errfile=0; do_errfile<2; do_errfile++) { for (do_errfile=0; do_errfile<2; do_errfile++) {
for (do_errcall=0; do_errcall<2; do_errcall++) { for (do_errcall=0; do_errcall<2; do_errcall++) {
DB_ENV *env; DB_ENV *env;
...@@ -43,6 +44,12 @@ int main (int argc, const char *argv[]) { ...@@ -43,6 +44,12 @@ int main (int argc, const char *argv[]) {
FILE *write_here = fmemopen(buf, sizeof(buf), "w"); FILE *write_here = fmemopen(buf, sizeof(buf), "w");
n_handle_error=0; n_handle_error=0;
r = db_env_create(&env, 0); assert(r==0); r = db_env_create(&env, 0); assert(r==0);
if (do_errpfx) {
expect_errpfx="whoopi";
env->set_errpfx(env, expect_errpfx);
} else {
expect_errpfx=0;
}
env->set_errfile(env,0); // Turn off those annoying errors env->set_errfile(env,0); // Turn off those annoying errors
if (do_errfile) if (do_errfile)
env->set_errfile(env, write_here); env->set_errfile(env, write_here);
...@@ -53,8 +60,14 @@ int main (int argc, const char *argv[]) { ...@@ -53,8 +60,14 @@ int main (int argc, const char *argv[]) {
r = env->close(env, 0); assert(r==0); r = env->close(env, 0); assert(r==0);
fclose(write_here); fclose(write_here);
if (do_errfile) { if (do_errfile) {
printf("buf=%s(end of buf)\n", buf);
if (do_errpfx) {
assert(strncmp(buf,"whoopi:",6)==0);
} else {
assert(buf[0]!=0); assert(buf[0]!=0);
assert(buf[0]!=':'); assert(buf[0]!=':');
}
assert(buf[strlen(buf)-1]=='\n');
} else { } else {
assert(buf[0]==0); assert(buf[0]==0);
} }
...@@ -65,6 +78,7 @@ int main (int argc, const char *argv[]) { ...@@ -65,6 +78,7 @@ int main (int argc, const char *argv[]) {
} }
} }
} }
}
#endif #endif
return 0; return 0;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment