[PATCH] D107640: [Orc] Enable debug object tests only for 64-bit processes on x86_64 hosts

Michał Górny via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Aug 7 07:24:57 PDT 2021


mgorny added a comment.

Just to confirm, the test suite passes for me (both i386 and amd64 build) with the following diff:

  diff --git a/llvm/test/ExecutionEngine/OrcLazy/debug-descriptor-elf-minimal.ll b/llvm/test/ExecutionEngine/OrcLazy/debug-descriptor-elf-minimal.ll
  index 1c17edb337a1..a8781a84bb7b 100644
  --- a/llvm/test/ExecutionEngine/OrcLazy/debug-descriptor-elf-minimal.ll
  +++ b/llvm/test/ExecutionEngine/OrcLazy/debug-descriptor-elf-minimal.ll
  @@ -1,3 +1,5 @@
  +; REQUIRES: 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 3bf1a98268f9..85c1215c6884 100644
  --- a/llvm/test/ExecutionEngine/OrcLazy/debug-objects-elf-minimal.ll
  +++ b/llvm/test/ExecutionEngine/OrcLazy/debug-objects-elf-minimal.ll
  @@ -1,3 +1,5 @@
  +; REQUIRES: x86_64
  +
   ; In-memory debug-object contains some basic DWARF
   ;
   ; RUN: lli --jit-kind=orc-lazy --per-module-lazy --jit-linker=rtdyld \


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D107640/new/

https://reviews.llvm.org/D107640



More information about the llvm-commits mailing list