From: Rafael Espindola Date: Thu, 4 Jun 2015 15:25:47 +0000 (+0000) Subject: Move test that depends on x86 to the x86 directory. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c71a3797a606a78d33d1dcf0fbad038140b42880;p=oota-llvm.git Move test that depends on x86 to the x86 directory. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239043 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Object/X86/no-start-symbol.test b/test/Object/X86/no-start-symbol.test new file mode 100644 index 00000000000..b468894c7b6 --- /dev/null +++ b/test/Object/X86/no-start-symbol.test @@ -0,0 +1,9 @@ +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-NEXT: .text: +CHECK-NEXT: 0: 90 nop +CHECK: foo: +CHECK-NEXT: 1: 90 nop diff --git a/test/Object/no-start-symbol.test b/test/Object/no-start-symbol.test deleted file mode 100644 index ea8e6db8dbf..00000000000 --- a/test/Object/no-start-symbol.test +++ /dev/null @@ -1,9 +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-NEXT: .text: -CHECK-NEXT: 0: 90 nop -CHECK: foo: -CHECK-NEXT: 1: 90 nop