[PATCH] D151789: [test] Add llc to the list of known tools for clang tests (NFCI)

Sergei Barannikov via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed May 31 01:32:22 PDT 2023


barannikov88 created this revision.
Herald added a project: All.
barannikov88 added a reviewer: erichkeane.
barannikov88 published this revision for review.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.

Some tests such as CodeGen/2005-09-24-AsmUserPrefix.c use llc. This
change makes sure llc is picked up from the bin directory rather than
from the PATH.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D151789

Files:
  clang/test/lit.cfg.py


Index: clang/test/lit.cfg.py
===================================================================
--- clang/test/lit.cfg.py
+++ clang/test/lit.cfg.py
@@ -86,17 +86,18 @@
     "c-index-test",
     "clang-diff",
     "clang-format",
-    "clang-repl",
+    "clang-linker-wrapper",
     "clang-offload-packager",
-    "clang-tblgen",
+    "clang-repl",
     "clang-scan-deps",
-    "opt",
+    "clang-tblgen",
+    "llc",
     "llvm-ifs",
-    "yaml2obj",
-    "clang-linker-wrapper",
     "llvm-lto",
     "llvm-lto2",
     "llvm-profdata",
+    "opt",
+    "yaml2obj",
     ToolSubst(
         "%clang_extdef_map",
         command=FindTool("clang-extdef-mapping"),


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D151789.526951.patch
Type: text/x-patch
Size: 664 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230531/777c1ae0/attachment.bin>


More information about the cfe-commits mailing list