diff --git a/vfs/samba/tests/ftruncate.c b/vfs/samba/tests/ftruncate.c deleted file mode 100644 index 93282782e..000000000 --- a/vfs/samba/tests/ftruncate.c +++ /dev/null @@ -1,27 +0,0 @@ -/* test whether ftruncte() can extend a file */ - -#if defined(HAVE_UNISTD_H) -#include -#endif - -#include -#include -#include - -#define DATA "conftest.trunc" -#define LEN 7663 - -main() -{ - int *buf; - int fd = open(DATA,O_RDWR|O_CREAT|O_TRUNC,0666); - - ftruncate(fd, LEN); - - unlink(DATA); - - if (lseek(fd, 0, SEEK_END) == LEN) { - exit(0); - } - exit(1); -}