[PATCH] D65136: [llvm-objdump] - Import the test/Object/X86/no-start-symbol.test test case and rewrite it to use YAML.
George Rimar via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 24 05:27:21 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL366896: [llvm-objdump] - Import the test/Object/X86/no-start-symbol.test test case and… (authored by grimar, committed by ).
Herald added a project: LLVM.
Changed prior to commit:
https://reviews.llvm.org/D65136?vs=211269&id=211475#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D65136/new/
https://reviews.llvm.org/D65136
Files:
llvm/trunk/test/Object/Inputs/no-start-symbol.elf-x86_64
llvm/trunk/test/Object/X86/no-start-symbol.test
llvm/trunk/test/tools/llvm-objdump/X86/disassemble-no-symbol-at-section-start.test
Index: llvm/trunk/test/tools/llvm-objdump/X86/disassemble-no-symbol-at-section-start.test
===================================================================
--- llvm/trunk/test/tools/llvm-objdump/X86/disassemble-no-symbol-at-section-start.test
+++ llvm/trunk/test/tools/llvm-objdump/X86/disassemble-no-symbol-at-section-start.test
@@ -0,0 +1,28 @@
+## Test that we disassemble the start of the section even
+## if there is no start symbol.
+
+# RUN: yaml2obj %s -o %t
+# RUN: llvm-objdump -d %t | FileCheck %s
+
+# CHECK: Disassembly of section .text:
+# CHECK-EMPTY:
+# CHECK-NEXT: .text:
+# CHECK-NEXT: 0: 90 nop
+# CHECK: foo:
+# CHECK-NEXT: 1: 90 nop
+
+--- !ELF
+FileHeader:
+ Class: ELFCLASS64
+ Data: ELFDATA2LSB
+ Type: ET_REL
+ Machine: EM_X86_64
+Sections:
+ - Name: .text
+ Type: SHT_PROGBITS
+ Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
+ Content: '9090'
+Symbols:
+ - Name: foo
+ Section: .text
+ Value: 0x0000000000000001
Index: llvm/trunk/test/Object/X86/no-start-symbol.test
===================================================================
--- llvm/trunk/test/Object/X86/no-start-symbol.test
+++ llvm/trunk/test/Object/X86/no-start-symbol.test
@@ -1,10 +0,0 @@
-RUN: llvm-objdump -d %p/../Inputs/no-start-symbol.elf-x86_64 | FileCheck %s
-
-Test that we disassemble the start of the section.
-
-CHECK: Disassembly of section .text:
-CHECK-EMPTY:
-CHECK-NEXT: .text:
-CHECK-NEXT: 0: 90 nop
-CHECK: foo:
-CHECK-NEXT: 1: 90 nop
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D65136.211475.patch
Type: text/x-patch
Size: 1508 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190724/f49c2a06/attachment.bin>
More information about the llvm-commits
mailing list