mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
c1c8699577
git-svn-id: file:///svn/toku/tokudb@50922 c7de825b-a66e-492c-adef-691d508d4ae1
44 lines
1.5 KiB
C++
44 lines
1.5 KiB
C++
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4:
|
|
#ident "$Id$"
|
|
#ident "Copyright (c) 2007-2012 Tokutek Inc. All rights reserved."
|
|
#ident "The technology is licensed by the Massachusetts Institute of Technology, Rutgers State University of New Jersey, and the Research Foundation of State University of New York at Stony Brook under United States of America Serial No. 11/760379 and to the patents and/or patent applications resulting from it."
|
|
// use strace to very that the toku_fsync_directory function works
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include "test.h"
|
|
|
|
static int verbose = 0;
|
|
|
|
int test_main(int argc, char *const argv[]) {
|
|
int r;
|
|
|
|
for (int i=1; i<argc; i++) {
|
|
if (strcmp(argv[i], "-v") == 0) {
|
|
if (verbose < 0) verbose = 0;
|
|
verbose++;
|
|
continue;
|
|
} else if (strcmp(argv[i], "-q") == 0) {
|
|
verbose = 0;
|
|
continue;
|
|
} else {
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
r = system("rm -rf " ENVDIR);
|
|
CKERR(r);
|
|
r = toku_os_mkdir(ENVDIR, S_IRWXU+S_IRWXG+S_IRWXO);
|
|
CKERR(r);
|
|
r = toku_os_mkdir(ENVDIR "/test", S_IRWXU+S_IRWXG+S_IRWXO);
|
|
CKERR(r);
|
|
|
|
r = toku_fsync_directory(""); CKERR(r);
|
|
r = toku_fsync_directory("."); CKERR(r);
|
|
r = toku_fsync_directory(ENVDIR "/test/a"); CKERR(r);
|
|
r = toku_fsync_directory("./" ENVDIR "/test/a"); CKERR(r);
|
|
r = toku_fsync_directory("/tmp/x"); CKERR(r);
|
|
|
|
return 0;
|
|
}
|