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"),


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"),
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to