summaryrefslogtreecommitdiff
path: root/tests/testbigfile.c
blob: 5e654bc663d2389a5ecab5c6883162339aef3681 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
    Copyright (C) 2012 - 2015 Andreas Baumann <mail@andreasbaumann.cc>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <sys/stat.h>
#include <fcntl.h>

int main( void )
{
	char buf[4096];
	int fd;
	ssize_t res;
	
	memset( buf, 1, 4096 );
	
	fd = open( "./mnt/testbigfile.data", O_WRONLY | O_CREAT,
	    S_IRUSR | S_IWUSR );
	if( fd < 0 ) {
		perror( "Unable to open testfile" );
		return 1;
	}
	
	res = write( fd, buf, 4096 );
	if( res != 4096 ) {
		perror( "Error writing" );
		(void)close( fd );
		return 1;
	}

	res = lseek( fd, 409600 /* 4294967296 */, SEEK_SET );
	if( res < 0 ) {
		perror( "Unable to seek in testfile" );
		return 1;
	}
	
	res = write( fd, buf, 4096 );
	if( res != 4096 ) {
		perror( "Error writing" );
		(void)close( fd );
		return 1;
	}
		
	(void)close( fd );
	
	return 0;
}