summaryrefslogtreecommitdiff
path: root/source3/tests/ftruncate.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2009-01-22 11:35:28 +0100
committerJelmer Vernooij <jelmer@samba.org>2009-01-22 11:35:28 +0100
commite490c1b8c858ea42e31ae1a6504c4788e0fb1545 (patch)
tree850087c9403c37adfc54deaf831a3e729223fa9a /source3/tests/ftruncate.c
parent63e23a7d648cb608a9834b4397c0aed765a1d459 (diff)
downloadsamba-e490c1b8c858ea42e31ae1a6504c4788e0fb1545.tar.gz
samba-e490c1b8c858ea42e31ae1a6504c4788e0fb1545.tar.bz2
samba-e490c1b8c858ea42e31ae1a6504c4788e0fb1545.zip
Move configure test files to the top-level and share them between s3 and
s4.
Diffstat (limited to 'source3/tests/ftruncate.c')
-rw-r--r--source3/tests/ftruncate.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/source3/tests/ftruncate.c b/source3/tests/ftruncate.c
deleted file mode 100644
index 93282782ee..0000000000
--- a/source3/tests/ftruncate.c
+++ /dev/null
@@ -1,27 +0,0 @@
-/* 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
-
-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);
-}