[libc-commits] [PATCH] D142515: [libc] fix strtointmax tests
Michael Jones via Phabricator via libc-commits
libc-commits at lists.llvm.org
Wed Jan 25 13:58:59 PST 2023
This revision was automatically updated to reflect the committed changes.
michaelrj marked an inline comment as done.
Closed by commit rG656b6d0b2371: [libc] fix strtointmax tests (authored by michaelrj).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D142515/new/
https://reviews.llvm.org/D142515
Files:
libc/test/src/CMakeLists.txt
libc/test/src/inttypes/CMakeLists.txt
Index: libc/test/src/inttypes/CMakeLists.txt
===================================================================
--- libc/test/src/inttypes/CMakeLists.txt
+++ libc/test/src/inttypes/CMakeLists.txt
@@ -8,7 +8,7 @@
strtoimax_test.cpp
DEPENDS
libc.src.inttypes.strtoimax
- libc.test.stdlib.strtol_test_support
+ libc.test.src.stdlib.strtol_test_support
)
add_libc_unittest(
@@ -19,7 +19,7 @@
strtoumax_test.cpp
DEPENDS
libc.src.inttypes.strtoumax
- libc.test.stdlib.strtol_test_support
+ libc.test.src.stdlib.strtol_test_support
)
add_libc_unittest(
Index: libc/test/src/CMakeLists.txt
===================================================================
--- libc/test/src/CMakeLists.txt
+++ libc/test/src/CMakeLists.txt
@@ -30,10 +30,10 @@
add_subdirectory(ctype)
add_subdirectory(errno)
add_subdirectory(fenv)
-add_subdirectory(inttypes)
add_subdirectory(math)
add_subdirectory(string)
add_subdirectory(stdlib)
+add_subdirectory(inttypes)
add_subdirectory(stdio)
if(${LIBC_TARGET_OS} STREQUAL "linux")
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D142515.492251.patch
Type: text/x-patch
Size: 1056 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20230125/99eb17af/attachment.bin>
More information about the libc-commits
mailing list