From 3eb666e292baf87c969be733de858b0cb7ead13f Mon Sep 17 00:00:00 2001 From: Krasimir Georgiev Date: Thu, 18 Jul 2024 13:04:59 +0000 Subject: [PATCH] update bazel for a6d2da8b9d7be19816dd4c76b02016c19618c1be --- .../llvm-project-overlay/libc/test/src/stdlib/BUILD.bazel | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/utils/bazel/llvm-project-overlay/libc/test/src/stdlib/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/test/src/stdlib/BUILD.bazel index a6f9d4f2fdac2a..4575c40bc76c56 100644 --- a/utils/bazel/llvm-project-overlay/libc/test/src/stdlib/BUILD.bazel +++ b/utils/bazel/llvm-project-overlay/libc/test/src/stdlib/BUILD.bazel @@ -104,16 +104,19 @@ libc_support_library( name = "qsort_test_helper", hdrs = ["SortingTest.h"], deps = [ + "//libc:__support_macros_config", "//libc:qsort_util", "//libc/test/UnitTest:LibcUnitTest", ], ) + libc_test( name = "qsort_test", srcs = ["qsort_test.cpp"], libc_function_deps = ["//libc:qsort"], deps = [":qsort_test_helper"], ) + libc_test( name = "quick_sort_test", srcs = ["quick_sort_test.cpp"], @@ -122,6 +125,7 @@ libc_test( "//libc:qsort_util", ], ) + libc_test( name = "heap_sort_test", srcs = ["heap_sort_test.cpp"],