Commit 23ea22b6 authored by Yoni Fogel's avatar Yoni Fogel

Closes #1445 diskfull.tdb now passes in windows

Unknown what change made this work.

Added additional asserts to verify it is really working.

git-svn-id: file:///svn/toku/tokudb@10347 c7de825b-a66e-492c-adef-691d508d4ae1
parent 42f2f8d1
......@@ -15,7 +15,7 @@ do_db_work(void) {
int did_fail=0;
{
system("rm -rf " ENVDIR);
r=system("rm -rf " ENVDIR); CKERR(r);
r=toku_os_mkdir(ENVDIR, S_IRWXU+S_IRWXG+S_IRWXO); assert(r==0);
FILE *error_file = 0;
......@@ -58,7 +58,7 @@ do_db_work(void) {
if (did_fail) return;
}
{
system("rm -rf " ENVDIR);
r=system("rm -rf " ENVDIR); CKERR(r);
r=toku_os_mkdir(ENVDIR, S_IRWXU+S_IRWXG+S_IRWXO); assert(r==0);
FILE *error_file = 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