Commit 5696890b authored by Yoni Fogel's avatar Yoni Fogel

Addresses #1531 Fix test-open-rename

git-svn-id: file:///svn/toku/tokudb@10348 c7de825b-a66e-492c-adef-691d508d4ae1
parent 23ea22b6
......@@ -22,7 +22,8 @@ int main(void) {
int r;
int fd;
system("rm -rf test-open-unlink-file");
r = system("rm -rf " TESTFILE); assert(r==0);
r = system("rm -rf " NEWNAME); assert(r==0);
fd = open(TESTFILE, O_CREAT+O_RDWR, S_IRUSR+S_IWUSR);
assert(fd != -1);
......
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