diff options
Diffstat (limited to 'tests/ftruncate.c')
-rw-r--r-- | tests/ftruncate.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/ftruncate.c b/tests/ftruncate.c new file mode 100644 index 0000000..4612376 --- /dev/null +++ b/tests/ftruncate.c @@ -0,0 +1,31 @@ +/* test whether ftruncte() can extend a file */ + +#if defined(HAVE_UNISTD_H) +#include <unistd.h> +#endif + +#include <sys/types.h> +#include <sys/stat.h> +#include <fcntl.h> + +#define DATA "conftest.trunc" +#define LEN 7663 + +int main(void) +{ + int *buf; + int fd = open(DATA,O_RDWR|O_CREAT|O_TRUNC,0666); + + if (fd == -1) { + exit(1); + } + + ftruncate(fd, LEN); + + unlink(DATA); + + if (lseek(fd, 0, SEEK_END) == LEN) { + exit(0); + } + exit(1); +} |