aboutsummaryrefslogtreecommitdiffstats
path: root/tests/fcntl_test.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-02-03 16:20:46 -0800
committerElliott Hughes <enh@google.com>2014-02-03 16:20:46 -0800
commitf64b8ea09db3bdd84eed59f7721301743332b3fe (patch)
tree6d45a510ee831e1bc154170170afe7c931474ebc /tests/fcntl_test.cpp
parenta122c376ef0737454a592cf44f50beabe154e9e3 (diff)
downloadandroid_bionic-f64b8ea09db3bdd84eed59f7721301743332b3fe.tar.gz
android_bionic-f64b8ea09db3bdd84eed59f7721301743332b3fe.tar.bz2
android_bionic-f64b8ea09db3bdd84eed59f7721301743332b3fe.zip
Add fallocate/fallocate64/posix_fallocate/posix_fallocate64.
Bug: 5287571 Bug: 12612860 Change-Id: I4501b9c6cdf9a830336ce0b3afc4ea716b6a0f6f
Diffstat (limited to 'tests/fcntl_test.cpp')
-rw-r--r--tests/fcntl_test.cpp49
1 files changed, 49 insertions, 0 deletions
diff --git a/tests/fcntl_test.cpp b/tests/fcntl_test.cpp
index a094fac3a..d14243e72 100644
--- a/tests/fcntl_test.cpp
+++ b/tests/fcntl_test.cpp
@@ -19,6 +19,8 @@
#include <errno.h>
#include <fcntl.h>
+#include "TemporaryFile.h"
+
TEST(fcntl, fcntl_smoke) {
int fd = open("/proc/version", O_RDONLY);
ASSERT_TRUE(fd != -1);
@@ -34,3 +36,50 @@ TEST(fcntl, fcntl_smoke) {
ASSERT_TRUE(flags != -1);
ASSERT_EQ(FD_CLOEXEC, flags & FD_CLOEXEC);
}
+
+TEST(fcntl, fallocate_EINVAL) {
+ TemporaryFile tf;
+
+#if !defined(__GLIBC__)
+ errno = 0;
+ ASSERT_EQ(-1, fallocate(tf.fd, 0, 0, -1));
+ ASSERT_EQ(EINVAL, errno);
+
+ errno = 0;
+ ASSERT_EQ(-1, fallocate64(tf.fd, 0, 0, -1));
+ ASSERT_EQ(EINVAL, errno);
+#endif
+
+ errno = 0;
+ ASSERT_EQ(EINVAL, posix_fallocate(tf.fd, 0, -1));
+ ASSERT_EQ(0, errno);
+
+ errno = 0;
+ ASSERT_EQ(EINVAL, posix_fallocate64(tf.fd, 0, -1));
+ ASSERT_EQ(0, errno);
+}
+
+TEST(fcntl, fallocate) {
+ TemporaryFile tf;
+ struct stat sb;
+ ASSERT_EQ(0, fstat(tf.fd, &sb));
+ ASSERT_EQ(0, sb.st_size);
+
+#if !defined(__GLIBC__)
+ ASSERT_EQ(0, fallocate(tf.fd, 0, 0, 1));
+ ASSERT_EQ(0, fstat(tf.fd, &sb));
+ ASSERT_EQ(1, sb.st_size);
+
+ ASSERT_EQ(0, fallocate64(tf.fd, 0, 0, 2));
+ ASSERT_EQ(0, fstat(tf.fd, &sb));
+ ASSERT_EQ(2, sb.st_size);
+#endif
+
+ ASSERT_EQ(0, posix_fallocate(tf.fd, 0, 3));
+ ASSERT_EQ(0, fstat(tf.fd, &sb));
+ ASSERT_EQ(3, sb.st_size);
+
+ ASSERT_EQ(0, posix_fallocate64(tf.fd, 0, 4));
+ ASSERT_EQ(0, fstat(tf.fd, &sb));
+ ASSERT_EQ(4, sb.st_size);
+}