mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
5f68cd8242
git-svn-id: file:///svn/toku/tokudb@18191 c7de825b-a66e-492c-adef-691d508d4ae1
21 lines
408 B
C
21 lines
408 B
C
#include <test.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <toku_assert.h>
|
|
#include <fcntl.h>
|
|
|
|
int test_main(int argc, char *const argv[]) {
|
|
int r;
|
|
int fd;
|
|
struct fileid fid;
|
|
|
|
fd = open(DEV_NULL_FILE, O_RDWR);
|
|
assert(fd != -1);
|
|
|
|
r = toku_os_get_unique_file_id(fd, &fid);
|
|
printf("%s:%d %d\n", __FILE__, __LINE__, r);
|
|
|
|
r = close(fd);
|
|
assert(r != -1);
|
|
return 0;
|
|
}
|