[llvm] [bazel] Remove empty Rename tests for now-deleted clang-rename (PR #109162)

Jordan Rupprecht via llvm-commits llvm-commits at lists.llvm.org
Wed Sep 18 08:38:59 PDT 2024


https://github.com/rupprecht created https://github.com/llvm/llvm-project/pull/109162

Removed in #108988, the tool is fine but the glob for tests is now empty because all the tests were deleted.

>From 4429326f48d7629b2ab91e0f00c0e720b1441825 Mon Sep 17 00:00:00 2001
From: Jordan Rupprecht <rupprecht at google.com>
Date: Wed, 18 Sep 2024 08:35:28 -0700
Subject: [PATCH] [bazel] Remove empty tests for now-deleted clang-rename

Removed in #108988, the tool is fine but the glob for tests is now empty because all the tests were deleted.
---
 .../clang/unittests/BUILD.bazel               | 26 -------------------
 1 file changed, 26 deletions(-)

diff --git a/utils/bazel/llvm-project-overlay/clang/unittests/BUILD.bazel b/utils/bazel/llvm-project-overlay/clang/unittests/BUILD.bazel
index 884a6055cf4e0c..e8c7106b287516 100644
--- a/utils/bazel/llvm-project-overlay/clang/unittests/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/clang/unittests/BUILD.bazel
@@ -298,32 +298,6 @@ cc_library(
     ],
 )
 
-cc_test(
-    name = "rename_tests",
-    size = "small",
-    timeout = "moderate",
-    srcs = glob(
-        [
-            "Rename/*.cpp",
-            "Rename/*.h",
-        ],
-        allow_empty = False,
-    ),
-    shard_count = 20,
-    deps = [
-        ":rename_tests_tooling_hdrs",
-        "//clang:ast_matchers",
-        "//clang:basic",
-        "//clang:format",
-        "//clang:frontend",
-        "//clang:tooling",
-        "//clang:tooling_refactoring",
-        "//llvm:Support",
-        "//third-party/unittest:gtest",
-        "//third-party/unittest:gtest_main",
-    ],
-)
-
 cc_test(
     name = "rewrite_tests",
     size = "small",



More information about the llvm-commits mailing list