[libc] [llvm] [libc] Implemented utimes (Issue #133953) (PR #134167)
Michael Jones via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 3 15:25:51 PDT 2025
================
@@ -0,0 +1,94 @@
+//===-- Unittests for utimes ----------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#include "hdr/fcntl_macros.h"
+#include "hdr/types/struct_timeval.h"
+#include "src/errno/libc_errno.h"
+#include "src/fcntl/open.h"
+#include "src/stdio/remove.h"
+#include "src/sys/stat/stat.h"
+#include "src/sys/time/utimes.h"
+#include "src/unistd/close.h"
+#include "test/UnitTest/ErrnoSetterMatcher.h"
+#include "test/UnitTest/Test.h"
+
+constexpr const char *FILE_PATH = "utimes.test";
+
+// SUCCESS: Takes a file and successfully updates
+// its last access and modified times.
+TEST(LlvmLibcUtimesTest, ChangeTimesSpecific) {
+ using LIBC_NAMESPACE::testing::ErrnoSetterMatcher::Succeeds;
+
+ // const char* FILE_PATH = "testdata/__utimes_changetimes.test";
+
+ auto TEST_FILE = libc_make_test_file_path(FILE_PATH);
+ int fd = LIBC_NAMESPACE::open(TEST_FILE, O_WRONLY | O_CREAT);
+ ASSERT_GT(fd, 0);
+ ASSERT_THAT(LIBC_NAMESPACE::close(fd), Succeeds(0));
+
+ // make a dummy timeval struct
+ struct timeval times[2];
+ times[0].tv_sec = 54321;
+ times[0].tv_usec = 12345;
+ times[1].tv_sec = 43210;
+ times[1].tv_usec = 23456;
+
+ // ensure utimes succeeds
+ ASSERT_THAT(LIBC_NAMESPACE::utimes(FILE_PATH, times), Succeeds(0));
+
+ // verify the times values against stat of the TEST_FILE
+ struct stat statbuf;
+ ASSERT_EQ(LIBC_NAMESPACE::stat(FILE_PATH, &statbuf), 0);
+
+ // seconds
+ ASSERT_EQ(statbuf.st_atim.tv_sec, times[0].tv_sec);
+ ASSERT_EQ(statbuf.st_mtim.tv_sec, times[1].tv_sec);
+
+ // microseconds
+ ASSERT_EQ(statbuf.st_atim.tv_nsec, times[0].tv_usec * 1000);
+ ASSERT_EQ(statbuf.st_mtim.tv_nsec, times[1].tv_usec * 1000);
----------------
michaelrj-google wrote:
the integer types need to match here, otherwise the test doesn't compile.
```suggestion
ASSERT_EQ(statbuf.st_atim.tv_nsec, static_cast<long>(times[0].tv_usec * 1000));
ASSERT_EQ(statbuf.st_mtim.tv_nsec, static_cast<long>(times[1].tv_usec * 1000));
```
https://github.com/llvm/llvm-project/pull/134167
More information about the llvm-commits
mailing list