[lldb] Restrict JITLoaderGDB test to native Linux environments (#172292)

This test used to work on non-Linux platforms that could run simple ELF
objects in a JIT session. However, there is a risk that this will become
too unstable for CI, so let's limit it to what we actually need.
This commit is contained in:
Stefan Gränitz 2025-12-18 13:38:49 +01:00 committed by GitHub
parent d1e98939c8
commit 8fe1dddce6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,10 +1,8 @@
# REQUIRES: target-x86_64
# XFAIL: system-windows
# REQUIRES: target-x86_64, system-linux, native
# JITLink is the Orc-specific JIT linker implementation.
#
# RUN: %clangxx -g -S -emit-llvm -fPIC --target=x86_64-unknown-unknown-elf \
# RUN: -o %t.ll %p/Inputs/jitbp.cpp
# RUN: %clangxx_host -g -S -emit-llvm -o %t.ll %p/Inputs/jitbp.cpp
# RUN: %lldb -b -o 'settings set plugin.jit-loader.gdb.enable on' -o 'b jitbp' \
# RUN: -o 'run --jit-linker=jitlink %t.ll' lli | FileCheck %s