[llvm] 506dbd8 - [ORC] Re-enable ELF DebugObjectManagerPlugin tests
Stefan Gränitz via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 22 08:57:51 PDT 2021
Author: Stefan Gränitz
Date: 2021-09-22T17:55:46+02:00
New Revision: 506dbd88fe8f1d3ac43457a9bb960c4745368886
URL: https://github.com/llvm/llvm-project/commit/506dbd88fe8f1d3ac43457a9bb960c4745368886
DIFF: https://github.com/llvm/llvm-project/commit/506dbd88fe8f1d3ac43457a9bb960c4745368886.diff
LOG: [ORC] Re-enable ELF DebugObjectManagerPlugin tests
These tests were disabled by accident after D107640. Actually, REQUIRES lines don't support `x86_64` and so these tests stopped running on all targets.
`native && target-x86_64` should be the correct term to express "x86_64 host targeting native arch".
Added:
Modified:
llvm/test/ExecutionEngine/OrcLazy/debug-descriptor-elf-minimal.ll
llvm/test/ExecutionEngine/OrcLazy/debug-objects-elf-minimal.ll
Removed:
################################################################################
diff --git a/llvm/test/ExecutionEngine/OrcLazy/debug-descriptor-elf-minimal.ll b/llvm/test/ExecutionEngine/OrcLazy/debug-descriptor-elf-minimal.ll
index a8781a84bb7bf..64a8c02155e4e 100644
--- a/llvm/test/ExecutionEngine/OrcLazy/debug-descriptor-elf-minimal.ll
+++ b/llvm/test/ExecutionEngine/OrcLazy/debug-descriptor-elf-minimal.ll
@@ -1,4 +1,4 @@
-; REQUIRES: x86_64
+; REQUIRES: native && target-x86_64
; RUN: lli --jit-kind=orc-lazy --per-module-lazy --jit-linker=rtdyld \
; RUN: --generate=__dump_jit_debug_descriptor %s | FileCheck %s
diff --git a/llvm/test/ExecutionEngine/OrcLazy/debug-objects-elf-minimal.ll b/llvm/test/ExecutionEngine/OrcLazy/debug-objects-elf-minimal.ll
index 85c1215c68841..5efe16c24bf3c 100644
--- a/llvm/test/ExecutionEngine/OrcLazy/debug-objects-elf-minimal.ll
+++ b/llvm/test/ExecutionEngine/OrcLazy/debug-objects-elf-minimal.ll
@@ -1,4 +1,4 @@
-; REQUIRES: x86_64
+; REQUIRES: native && target-x86_64
; In-memory debug-object contains some basic DWARF
;
More information about the llvm-commits
mailing list