summaryrefslogtreecommitdiff
path: root/test/Object/yaml2obj-elf-symbol-basic.yaml
diff options
context:
space:
mode:
authorSean Silva <silvas@purdue.edu>2013-06-21 23:17:10 +0000
committerSean Silva <silvas@purdue.edu>2013-06-21 23:17:10 +0000
commit8fa38898ffb0b1d295e45586c8452e49daddc751 (patch)
tree9d38fe0baa674dda970f1a0c997724ce471eda1b /test/Object/yaml2obj-elf-symbol-basic.yaml
parent1948910e3186d31bc0d213ecd0d7e87bb2c2760d (diff)
downloadllvm-8fa38898ffb0b1d295e45586c8452e49daddc751.tar.gz
llvm-8fa38898ffb0b1d295e45586c8452e49daddc751.tar.bz2
llvm-8fa38898ffb0b1d295e45586c8452e49daddc751.tar.xz
Revert "Put r184469 disassembler test back on X86"
This reverts commit r184602. In an upcoming commit, I will just remove the disassembler part of the test; it was mostly just a "nifty" thing marking a milestone but it doesn't test anything that isn't tested elsewhere. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184606 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Object/yaml2obj-elf-symbol-basic.yaml')
-rw-r--r--test/Object/yaml2obj-elf-symbol-basic.yaml15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/Object/yaml2obj-elf-symbol-basic.yaml b/test/Object/yaml2obj-elf-symbol-basic.yaml
index c561623409..30aa96c203 100644
--- a/test/Object/yaml2obj-elf-symbol-basic.yaml
+++ b/test/Object/yaml2obj-elf-symbol-basic.yaml
@@ -9,6 +9,13 @@ Sections:
- Name: .text
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
+ Content: "90EBFE" # x86 machine code
+ # NOP ; To make main's `Value` non-zero (for testing).
+ # main:
+ # JMP -2 ; (infloop)
+ # This YAML file is a valid relocatable object that,
+ # when linked and run on x86_64, will go into an
+ # infloop.
- Name: .symtab
Type: SHT_SYMTAB
Symbols:
@@ -25,9 +32,17 @@ Sections:
# CHECK-NEXT: Name: (0)
# CHECK: Symbol {
# CHECK-NEXT: Name: main
+# CHECK-NEXT: Value: 0x1
+# CHECK-NEXT: Size: 2
# CHECK: Binding: Global
# CHECK-NEXT: Type: Function
# CHECK: Section: .text
# CHECK: Symbol {
# 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