From 506dbd88fe8f1d3ac43457a9bb960c4745368886 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Stefan=20Gr=C3=A4nitz?= Date: Wed, 22 Sep 2021 17:35:26 +0200 Subject: [PATCH] [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". --- llvm/test/ExecutionEngine/OrcLazy/debug-descriptor-elf-minimal.ll | 2 +- llvm/test/ExecutionEngine/OrcLazy/debug-objects-elf-minimal.ll | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/test/ExecutionEngine/OrcLazy/debug-descriptor-elf-minimal.ll b/llvm/test/ExecutionEngine/OrcLazy/debug-descriptor-elf-minimal.ll index a8781a8..64a8c02 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 85c1215c..5efe16c 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 ; -- 2.7.4