[llvm] 47c1b65 - [llvm][test][CGPluginTest] Fix plugin path (#159914)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Sep 20 03:22:58 PDT 2025
Author: Raul Tambre
Date: 2025-09-20T13:22:54+03:00
New Revision: 47c1b650626043f0a8f8e32851617201751f9439
URL: https://github.com/llvm/llvm-project/commit/47c1b650626043f0a8f8e32851617201751f9439
DIFF: https://github.com/llvm/llvm-project/commit/47c1b650626043f0a8f8e32851617201751f9439.diff
LOG: [llvm][test][CGPluginTest] Fix plugin path (#159914)
During development I introduced the `%llvm_obj_root` substitution but later removed it as a better
solution became apparent. Revert this to the original substitution while keeping the new path.
Fixes: 4e1c996674cc340f290b0a528e2038e76494d8d4
Added:
Modified:
llvm/test/Other/codegen-plugin-loading.ll
Removed:
################################################################################
diff --git a/llvm/test/Other/codegen-plugin-loading.ll b/llvm/test/Other/codegen-plugin-loading.ll
index a2a0814718e22..4913a32a639a6 100644
--- a/llvm/test/Other/codegen-plugin-loading.ll
+++ b/llvm/test/Other/codegen-plugin-loading.ll
@@ -1,4 +1,4 @@
-; RUN: llc -load %llvm_obj_root/unittests/CodeGen/CGPluginTest/CGTestPlugin%pluginext %s -o - | FileCheck %s
+; RUN: llc -load %llvmshlibdir/unittests/CodeGen/CGPluginTest/CGTestPlugin%pluginext %s -o - | FileCheck %s
; REQUIRES: native, system-linux, llvm-dylib
; CHECK: CodeGen Test Pass running on main
More information about the llvm-commits
mailing list