[libc] [llvm] [libc] Implemented utimes (Issue #133953) (PR #134167)

Michael Jones via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 3 11:16:51 PDT 2025


================
@@ -0,0 +1,96 @@
+//===-- 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 "src/unistd/unlink.h"
----------------
michaelrj-google wrote:

unlink isn't used in this test.

https://github.com/llvm/llvm-project/pull/134167


More information about the llvm-commits mailing list