[llvm] [LLVM][Example] More test feature fixes for s390 and RISC-V (PR #172147)

Alexis Engelke via llvm-commits llvm-commits at lists.llvm.org
Sat Dec 13 02:28:23 PST 2025


https://github.com/aengelke created https://github.com/llvm/llvm-project/pull/172147

None

>From 2106812de9d69c5e07126a002dd2eeaae65e7d08 Mon Sep 17 00:00:00 2001
From: Alexis Engelke <engelke at in.tum.de>
Date: Sat, 13 Dec 2025 10:28:00 +0000
Subject: [PATCH] =?UTF-8?q?[=F0=9D=98=80=F0=9D=97=BD=F0=9D=97=BF]=20initia?=
 =?UTF-8?q?l=20version?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Created using spr 1.3.5-bogner
---
 llvm/test/Examples/Kaleidoscope/lit.local.cfg                  | 3 ++-
 .../Examples/OrcV2Examples/lljit-with-remote-debugging.test    | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/llvm/test/Examples/Kaleidoscope/lit.local.cfg b/llvm/test/Examples/Kaleidoscope/lit.local.cfg
index 550f0b64dae6c..f96223fa865c5 100644
--- a/llvm/test/Examples/Kaleidoscope/lit.local.cfg
+++ b/llvm/test/Examples/Kaleidoscope/lit.local.cfg
@@ -1,3 +1,4 @@
 # TODO: investigate
-if not "X86" in config.root.targets:
+# RISC-V fails due to unresolved softfp functions.
+if not "X86" in config.root.targets or "riscv" in config.target_triple:
     config.unsupported = True
diff --git a/llvm/test/Examples/OrcV2Examples/lljit-with-remote-debugging.test b/llvm/test/Examples/OrcV2Examples/lljit-with-remote-debugging.test
index 83dbf6249cfa1..116bb3a8340a3 100644
--- a/llvm/test/Examples/OrcV2Examples/lljit-with-remote-debugging.test
+++ b/llvm/test/Examples/OrcV2Examples/lljit-with-remote-debugging.test
@@ -4,7 +4,7 @@
 # Instructions for debugging can be found in LLJITWithRemoteDebugging.cpp
 
 # REQUIRES: default_triple
-# UNSUPPORTED: target=powerpc64{{.*}}
+# UNSUPPORTED: target=powerpc64{{.*}}, target=s390{{.*}}
 
 # RUN: LLJITWithRemoteDebugging %p/Inputs/argc_sub1.ll 2>&1 | FileCheck --check-prefix=CHECK0 %s
 # CHECK0: __jit_debug_descriptor.last_entry = [[BEFORE0:0x[0-9a-f]+]]



More information about the llvm-commits mailing list