From f2c3a9cbd229791b63d58f7499fe9ebf74c3303b Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Mon, 20 Mar 2023 15:04:48 -0700 Subject: [PATCH] [libc][obvious] fix missing memory_check_utils memmove and bcopy tests were missing a dependancy on memory_check_utils in the bazel build, causing build failures. Differential Revision: https://reviews.llvm.org/D146462 --- utils/bazel/llvm-project-overlay/libc/test/src/string/BUILD.bazel | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/bazel/llvm-project-overlay/libc/test/src/string/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/test/src/string/BUILD.bazel index 78e8b3a..72b75a3 100644 --- a/utils/bazel/llvm-project-overlay/libc/test/src/string/BUILD.bazel +++ b/utils/bazel/llvm-project-overlay/libc/test/src/string/BUILD.bazel @@ -144,6 +144,7 @@ libc_test( deps = [ "//libc:__support_cpp_span", "//libc/test/UnitTest:memory_matcher", + ":memory_check_utils", ], ) @@ -156,6 +157,7 @@ libc_test( deps = [ "//libc:__support_cpp_span", "//libc/test/UnitTest:memory_matcher", + ":memory_check_utils", ], ) -- 2.7.4