From 7156d3b1fe80f8fb54324e6f24d0d73c3af73121 Mon Sep 17 00:00:00 2001 From: Tue Ly Date: Mon, 13 Feb 2023 15:52:51 -0500 Subject: [PATCH] [libc][bazel] Update math function unit tests' dependency computation. --- .../llvm-project-overlay/libc/test/src/math/libc_math_test_rules.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/bazel/llvm-project-overlay/libc/test/src/math/libc_math_test_rules.bzl b/utils/bazel/llvm-project-overlay/libc/test/src/math/libc_math_test_rules.bzl index 0394da5..233bc15 100644 --- a/utils/bazel/llvm-project-overlay/libc/test/src/math/libc_math_test_rules.bzl +++ b/utils/bazel/llvm-project-overlay/libc/test/src/math/libc_math_test_rules.bzl @@ -23,7 +23,7 @@ def math_test(name, hdrs = [], deps = [], **kwargs): libc_test( name = test_name, srcs = [test_name + ".cpp"] + hdrs, - libc_function_deps = ["//libc:" + name], + libc_function_deps = ["//libc:func_name".replace("func_name", name)], deps = [ "//libc:__support_fputil_basic_operations", "//libc:__support_builtin_wrappers", -- 2.7.4