[llvm] [llvm][test][CGPluginTest] Fix plugin path again (PR #159923)

Raul Tambre via llvm-commits llvm-commits at lists.llvm.org
Sat Sep 20 05:49:13 PDT 2025


https://github.com/tambry created https://github.com/llvm/llvm-project/pull/159923

I forgot to remove a bunch of the intermediary path. That's what I get for not waiting my local build to finish.

Fixes: 47c1b650626043f0a8f8e32851617201751f9439

>From 2c2c27172a167fb435d80a396db64065e7aa3e0b Mon Sep 17 00:00:00 2001
From: Raul Tambre <raul at tambre.ee>
Date: Sat, 20 Sep 2025 15:48:24 +0300
Subject: [PATCH] [llvm][test][CGPluginTest] Fix plugin path again

I forgot to remove a bunch of the intermediary path.
That's what I get for not waiting my local build to finish.

Fixes: 47c1b650626043f0a8f8e32851617201751f9439
---
 llvm/test/Other/codegen-plugin-loading.ll | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/llvm/test/Other/codegen-plugin-loading.ll b/llvm/test/Other/codegen-plugin-loading.ll
index 4913a32a639a6..7a8b724462735 100644
--- a/llvm/test/Other/codegen-plugin-loading.ll
+++ b/llvm/test/Other/codegen-plugin-loading.ll
@@ -1,4 +1,4 @@
-; RUN: llc -load %llvmshlibdir/unittests/CodeGen/CGPluginTest/CGTestPlugin%pluginext %s -o - | FileCheck %s
+; RUN: llc -load %llvmshlibdir/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