Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / tools / llvm-objcopy / ELF / basic-binary-copy.test
bloba931aede6ccb2c095781b5da3d4d2822df1ca04d
1 # RUN: yaml2obj %s -o %t
2 # RUN: llvm-objcopy -O binary %t %t2
3 # RUN: od -t x2 -v %t2 | FileCheck %s --ignore-case
4 # RUN: wc -c < %t2 | FileCheck %s --check-prefix=SIZE
6 !ELF
7 FileHeader:
8   Class:           ELFCLASS64
9   Data:            ELFDATA2LSB
10   Type:            ET_EXEC
11   Machine:         EM_X86_64
12 Sections:
13   - Name:            .text
14     Type:            SHT_PROGBITS
15     Flags:           [ SHF_ALLOC, SHF_EXECINSTR ]
16     AddressAlign:    0x0000000000001000
17     Content:         "c3c3c3c3"
18 ProgramHeaders:
19   - Type:     PT_LOAD
20     Flags:    [ PF_X, PF_R ]
21     FirstSec: .text
22     LastSec:  .text
24 # CHECK: 0000000 c3c3 c3c3
25 # SIZE:  4