Georgii Rymar dbf520f617 [llvm-readobj][test] - Move platform specific test cases and their inputs to separate folders.
This creates the next subfolders in the test directory:
"COFF", "ELF", "MachO", "wasm".

I've also removed platform specific prefixes, like "coff-*".
One unused binary was removed as well: `Inputs/relocs.obj.elf-mips`

Differential revision: https://reviews.llvm.org/D71203
2019-12-10 11:36:23 +03:00

25 lines
609 B
Plaintext

RUN: llvm-readobj --coff-basereloc %p/Inputs/basereloc.obj.coff-i386 | FileCheck %s
CHECK: Format: COFF-i386
CHECK-NEXT: Arch: i386
CHECK-NEXT: AddressSize: 32bit
CHECK-NEXT: BaseReloc [
CHECK-NEXT: Entry {
CHECK-NEXT: Type: HIGHLOW
CHECK-NEXT: Address: 0x1004
CHECK-NEXT: }
CHECK-NEXT: Entry {
CHECK-NEXT: Type: HIGHLOW
CHECK-NEXT: Address: 0x100A
CHECK-NEXT: }
CHECK-NEXT: Entry {
CHECK-NEXT: Type: HIGHLOW
CHECK-NEXT: Address: 0x1010
CHECK-NEXT: }
CHECK-NEXT: Entry {
CHECK-NEXT: Type: ABSOLUTE
CHECK-NEXT: Address: 0x1000
CHECK-NEXT: }
CHECK-NEXT: ]