mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
4f96393239
git-svn-id: file:///svn/toku/tokudb@10069 c7de825b-a66e-492c-adef-691d508d4ae1
23 lines
735 B
C
23 lines
735 B
C
/* Verify that toku_os_pwrite does the right thing when writing beyond 4GB. */
|
|
#include <fcntl.h>
|
|
#include "toku_portability.h"
|
|
#include <assert.h>
|
|
|
|
int main (int argc __attribute__((__unused__)), char *argv[] __attribute__((__unused__))) {
|
|
char fname[] = "pwrite4g.data";
|
|
int r;
|
|
unlink(fname);
|
|
int fd = open(fname, O_RDWR | O_CREAT | O_BINARY, S_IRWXU|S_IRWXG|S_IRWXO);
|
|
assert(fd>=0);
|
|
char buf[] = "hello";
|
|
int64_t offset = (1LL<<32) + 100;
|
|
r = toku_os_pwrite(fd, buf, sizeof(buf), offset);
|
|
assert(r==sizeof(buf));
|
|
int64_t fsize;
|
|
r = toku_os_get_file_size(fd, &fsize);
|
|
assert(r == 0);
|
|
assert(fsize > 100 + (signed)sizeof(buf));
|
|
r = close(fd);
|
|
assert(r==0);
|
|
return 0;
|
|
}
|