[libc-commits] [libc] [libc][test] Adjust header paths in tests (PR #119623)

Nick Desaulniers via libc-commits libc-commits at lists.llvm.org
Wed Dec 11 14:32:03 PST 2024


nickdesaulniers wrote:

Do you mind folding this diff into your patch?

```diff
diff --git a/libc/test/src/strings/CMakeLists.txt b/libc/test/src/strings/CMakeLists.txt
index 963a1d6d6d60..10f96b8531f6 100644
--- a/libc/test/src/strings/CMakeLists.txt
+++ b/libc/test/src/strings/CMakeLists.txt
@@ -20,7 +20,7 @@ add_libc_test(
     index_test.cpp
   DEPENDS
     libc.src.strings.index
-    libc.test.src.strchr_test_support
+    libc.test.src.string.strchr_test_support
 )
 
 add_libc_test(
@@ -31,7 +31,7 @@ add_libc_test(
     rindex_test.cpp
   DEPENDS
     libc.src.strings.rindex
-    libc.test.src.strchr_test_support
+    libc.test.src.string.strchr_test_support
 )
 
 add_libc_test(

```
otherwise I'll send a new PR for it.

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


More information about the libc-commits mailing list