mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
324c278a31
git-svn-id: file:///svn/toku/tokudb@16673 c7de825b-a66e-492c-adef-691d508d4ae1
43 lines
962 B
C
43 lines
962 B
C
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <toku_assert.h>
|
|
#include <fcntl.h>
|
|
#include <test.h>
|
|
#include "toku_os.h"
|
|
|
|
int verbose=0;
|
|
|
|
//TODO: Test that different files are different,
|
|
// other stuff
|
|
static void test_handles(const char *fname) {
|
|
unlink(fname);
|
|
int fd = open(fname, O_RDWR | O_CREAT | O_BINARY, S_IRWXU|S_IRWXG|S_IRWXO);
|
|
assert(fd!=-1);
|
|
int i;
|
|
struct fileid id_base;
|
|
struct fileid id;
|
|
int r = toku_os_get_unique_file_id(fd, &id_base);
|
|
assert(r==0);
|
|
for (i=0; i < 1<<16; i++) {
|
|
r = toku_os_get_unique_file_id(fd, &id);
|
|
assert(r==0);
|
|
assert(memcmp(&id, &id_base, sizeof(id))==0);
|
|
}
|
|
r = close(fd);
|
|
assert(r==0);
|
|
}
|
|
|
|
int test_main(int argc, char *argv[]) {
|
|
int i;
|
|
|
|
for (i=1; i<argc; i++) {
|
|
char *arg = argv[i];
|
|
if (strcmp(arg, "-v") == 0 || strcmp(arg, "--verbose") == 0)
|
|
verbose++;
|
|
}
|
|
|
|
test_handles("junk");
|
|
|
|
return 0;
|
|
}
|