Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / tools / llvm-objcopy / ELF / rename-section.test
blobe113e7d2203b7d1263250b1e46fbeb2cbea0dd38
1 # RUN: yaml2obj %s -o %t
2 # RUN: llvm-objcopy --rename-section=.foo=.bar %t %t2
3 # RUN: llvm-readobj --file-headers --sections --section-data %t2 | FileCheck %s
4 # RUN: not llvm-objcopy --rename-section=.foo.bar --rename-section=.foo=.other %t %t2 2>&1 | FileCheck %s --check-prefix=BAD-FORMAT
5 # RUN: not llvm-objcopy --rename-section=.foo=.bar --rename-section=.foo=.other %t %t2 2>&1 | FileCheck %s --check-prefix=MULTIPLE-RENAMES
7 ## Section renames don't chain:
8 # RUN: llvm-objcopy --rename-section=.foo=.bar --rename-section=.bar=.baz %t %t3
9 # RUN: cmp %t2 %t3
11 !ELF
12 FileHeader:
13   Class:           ELFCLASS64
14   Data:            ELFDATA2LSB
15   Type:            ET_REL
16   Machine:         EM_X86_64
17 Sections:
18   - Name:            .foo
19     Type:            SHT_PROGBITS
20     Flags:           [ SHF_ALLOC ]
21     Content:        "c3c3c3c3"
23 # CHECK: SectionHeaderCount: 4
25 # CHECK: Name: .bar
26 # CHECK: SectionData (
27 # CHECK-NEXT:   0000: C3C3C3C3
28 # CHECK-NEXT: )
29 # CHECK: Name: .strtab
30 # CHECK: Name: .shstrtab
32 #BAD-FORMAT: bad format for --rename-section: missing '='
33 #MULTIPLE-RENAMES: multiple renames of section '.foo'