diff options
author | Diana Picus <diana.picus@linaro.org> | 2018-11-14 09:58:17 +0000 |
---|---|---|
committer | Diana Picus <diana.picus@linaro.org> | 2018-11-14 09:58:17 +0000 |
commit | 8b56ab456130ec22f03a095e1ed4e1145b51f838 (patch) | |
tree | b03f5dfb77f1b56d4c81f463da2b3d81474ada47 | |
parent | 59fa37da873c63689d73ce740c5061b364bf012f (diff) | |
download | bcm5719-llvm-8b56ab456130ec22f03a095e1ed4e1145b51f838.tar.gz bcm5719-llvm-8b56ab456130ec22f03a095e1ed4e1145b51f838.zip |
Fix r346747 and r346796
Require x86 for the tests in order to fix non-x86 bots. This seems to be
the case for all other tests in that directory.
llvm-svn: 346842
-rw-r--r-- | lld/test/ELF/gdb-index-multiple-cu-2.s | 1 | ||||
-rw-r--r-- | lld/test/ELF/gdb-index-multiple-cu.s | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lld/test/ELF/gdb-index-multiple-cu-2.s b/lld/test/ELF/gdb-index-multiple-cu-2.s index 6fafaf54348..9cf2a0c8269 100644 --- a/lld/test/ELF/gdb-index-multiple-cu-2.s +++ b/lld/test/ELF/gdb-index-multiple-cu-2.s @@ -1,3 +1,4 @@ +# REQUIRES: x86 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %p/Inputs/gdb-index-multiple-cu-2.s -o %t1.o # RUN: ld.lld --gdb-index %t.o %t1.o -o %t diff --git a/lld/test/ELF/gdb-index-multiple-cu.s b/lld/test/ELF/gdb-index-multiple-cu.s index 3952687b75c..fc1d83ee42d 100644 --- a/lld/test/ELF/gdb-index-multiple-cu.s +++ b/lld/test/ELF/gdb-index-multiple-cu.s @@ -1,3 +1,4 @@ +# REQUIRES: x86 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o # RUN: ld.lld --gdb-index %t.o -o %t # RUN: llvm-dwarfdump -gdb-index %t | FileCheck %s |