[libc-commits] [libc] 3cdbb8d - [libc] Fix old unittests for wchar tests (#99060)
via libc-commits
libc-commits at lists.llvm.org
Tue Jul 16 09:50:18 PDT 2024
Author: Joseph Huber
Date: 2024-07-16T11:50:15-05:00
New Revision: 3cdbb8d74d6fbd298ad4d7d283a3c7bba008e8ef
URL: https://github.com/llvm/llvm-project/commit/3cdbb8d74d6fbd298ad4d7d283a3c7bba008e8ef
DIFF: https://github.com/llvm/llvm-project/commit/3cdbb8d74d6fbd298ad4d7d283a3c7bba008e8ef.diff
LOG: [libc] Fix old unittests for wchar tests (#99060)
Summary:
These need to use `add_libc_test`.
Added:
Modified:
libc/test/src/wchar/CMakeLists.txt
Removed:
################################################################################
diff --git a/libc/test/src/wchar/CMakeLists.txt b/libc/test/src/wchar/CMakeLists.txt
index cabf42ba9b0b2..3cc404b9c86fc 100644
--- a/libc/test/src/wchar/CMakeLists.txt
+++ b/libc/test/src/wchar/CMakeLists.txt
@@ -1,6 +1,6 @@
add_custom_target(libc_wchar_unittests)
-add_libc_unittest(
+add_libc_test(
btowc_test
SUITE
libc_wchar_unittests
@@ -11,7 +11,7 @@ add_libc_unittest(
libc.src.wchar.btowc
)
-add_libc_unittest(
+add_libc_test(
wctob_test
SUITE
libc_wchar_unittests
More information about the libc-commits
mailing list