diff options
| author | Sean Silva <silvas@purdue.edu> | 2013-06-21 21:51:15 +0000 |
|---|---|---|
| committer | Sean Silva <silvas@purdue.edu> | 2013-06-21 21:51:15 +0000 |
| commit | 8068ca72bc57519bc2eabcaaa0fc4ed6f7c88b5e (patch) | |
| tree | d36310b9dc4558c8be6641671630c93f027758cf | |
| parent | bea8cc7113b687add799cf438a4bfd446750243c (diff) | |
| download | bcm5719-llvm-8068ca72bc57519bc2eabcaaa0fc4ed6f7c88b5e.tar.gz bcm5719-llvm-8068ca72bc57519bc2eabcaaa0fc4ed6f7c88b5e.zip | |
[yaml2obj][ELF] Don't do disassembly in this test.
This was causing buildbot failures when build without X86 support.
Is there a way to conditionalize the test on the X86 target being
present?
llvm-svn: 184597
| -rw-r--r-- | llvm/test/Object/yaml2obj-elf-symbol-basic.yaml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/test/Object/yaml2obj-elf-symbol-basic.yaml b/llvm/test/Object/yaml2obj-elf-symbol-basic.yaml index f19db424509..30aa96c203e 100644 --- a/llvm/test/Object/yaml2obj-elf-symbol-basic.yaml +++ b/llvm/test/Object/yaml2obj-elf-symbol-basic.yaml @@ -1,5 +1,4 @@ # RUN: yaml2obj -format=elf %s | llvm-readobj -symbols - | FileCheck %s -# RUN: yaml2obj -format=elf %s | llvm-objdump -d -no-show-raw-insn - | FileCheck %s --check-prefix=DISASSEMBLY !ELF FileHeader: Class: ELFCLASS64 @@ -42,6 +41,8 @@ Sections: # CHECK: Name: undefined_symbol # CHECK: Section: (0x0) +# How to conditionalize on X86 being present? +# yaml2obj -format=elf %s | llvm-objdump -d -no-show-raw-insn - | FileCheck %s --check-prefix=DISASSEMBLY # DISASSEMBLY: Disassembly of section .text: # DISASSEMBLY-NEXT: main: # DISASSEMBLY-NEXT: 1: jmp -2 |

