summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-08-08 17:13:33 -0700
committerElliott Hughes <enh@google.com>2013-08-08 17:13:33 -0700
commitd0be7c8f9a06b3ca8ea7647ea35c8f9dc63f0fe1 (patch)
treea17df28516ef00c47859728418e9b7c7ef26c1ba /tests
parent632fd5183a611b80e009be36f881f572acc41619 (diff)
downloadbionic-d0be7c8f9a06b3ca8ea7647ea35c8f9dc63f0fe1.zip
bionic-d0be7c8f9a06b3ca8ea7647ea35c8f9dc63f0fe1.tar.gz
bionic-d0be7c8f9a06b3ca8ea7647ea35c8f9dc63f0fe1.tar.bz2
Add futimens.
Bug: 10239370 Change-Id: I518340084103dc339ef8a065d4837d6258a1381d
Diffstat (limited to 'tests')
-rw-r--r--tests/Android.mk1
-rw-r--r--tests/sys_stat_test.cpp53
2 files changed, 54 insertions, 0 deletions
diff --git a/tests/Android.mk b/tests/Android.mk
index efee17b..177e452 100644
--- a/tests/Android.mk
+++ b/tests/Android.mk
@@ -80,6 +80,7 @@ test_src_files = \
string_test.cpp \
strings_test.cpp \
stubs_test.cpp \
+ sys_stat_test.cpp \
system_properties_test.cpp \
time_test.cpp \
unistd_test.cpp \
diff --git a/tests/sys_stat_test.cpp b/tests/sys_stat_test.cpp
new file mode 100644
index 0000000..a23100a
--- /dev/null
+++ b/tests/sys_stat_test.cpp
@@ -0,0 +1,53 @@
+/*
+ * Copyright (C) 2013 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <gtest/gtest.h>
+
+#include <errno.h>
+#include <stdlib.h>
+#include <sys/stat.h>
+
+TEST(sys_stat, futimens) {
+ FILE* fp = tmpfile();
+ ASSERT_TRUE(fp != NULL);
+
+ int fd = fileno(fp);
+ ASSERT_NE(fd, -1);
+
+ timespec times[2];
+ times[0].tv_sec = 123;
+ times[0].tv_nsec = 0;
+ times[1].tv_sec = 456;
+ times[1].tv_nsec = 0;
+ ASSERT_EQ(0, futimens(fd, times)) << strerror(errno);
+
+ struct stat sb;
+ ASSERT_EQ(0, fstat(fd, &sb));
+ ASSERT_EQ(times[0].tv_sec, static_cast<long>(sb.st_atime));
+ ASSERT_EQ(times[1].tv_sec, static_cast<long>(sb.st_mtime));
+
+ fclose(fp);
+}
+
+TEST(sys_stat, futimens_EBADF) {
+ timespec times[2];
+ times[0].tv_sec = 123;
+ times[0].tv_nsec = 0;
+ times[1].tv_sec = 456;
+ times[1].tv_nsec = 0;
+ ASSERT_EQ(-1, futimens(-1, times));
+ ASSERT_EQ(EBADF, errno);
+}