[PATCH] D146462: [libc][obvious] fix missing memory_check_utils

Michael Jones via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 20 15:06:50 PDT 2023


michaelrj created this revision.
Herald added subscribers: mikhail.ramalho, ecnelises, tschuett.
Herald added a project: All.
michaelrj requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

memmove and bcopy tests were missing a dependancy on memory_check_utils
in the bazel build, causing build failures.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D146462

Files:
  utils/bazel/llvm-project-overlay/libc/test/src/string/BUILD.bazel


Index: utils/bazel/llvm-project-overlay/libc/test/src/string/BUILD.bazel
===================================================================
--- utils/bazel/llvm-project-overlay/libc/test/src/string/BUILD.bazel
+++ utils/bazel/llvm-project-overlay/libc/test/src/string/BUILD.bazel
@@ -144,6 +144,7 @@
     deps = [
         "//libc:__support_cpp_span",
         "//libc/test/UnitTest:memory_matcher",
+        ":memory_check_utils",
     ],
 )
 
@@ -156,6 +157,7 @@
     deps = [
         "//libc:__support_cpp_span",
         "//libc/test/UnitTest:memory_matcher",
+        ":memory_check_utils",
     ],
 )
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D146462.506744.patch
Type: text/x-patch
Size: 611 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230320/f7b5194e/attachment.bin>


More information about the llvm-commits mailing list