llvm-project/llvm/test/tools/llvm-objcopy/ELF/prefix-alloc-sections.test
Fangrui Song 55c81d4282 [test] Use yaml2obj -o %t instead of > %t
To improve consistency and avoid unneeded shell feature (output
redirection).

While here, make other changes to improve consistency

--docnum 1 => --docnum=1
-docnum=x => --docnum=x
2020-01-21 17:20:18 -08:00

37 lines
1.0 KiB
Plaintext

# RUN: yaml2obj %s -o %t
# RUN: llvm-objcopy --prefix-alloc-sections=.prefix %t %t2
# RUN: llvm-readobj --sections %t2 | FileCheck %s
!ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
Type: ET_REL
Machine: EM_X86_64
Sections:
- Name: .foo
Type: SHT_PROGBITS
Flags: [ ]
- Name: .prefix.already_prefixed
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC ]
- Name: .text
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC ]
- Name: .rel.text
Type: SHT_REL
Info: .text
- Name: .rela.data
Type: SHT_RELA
Info: .data
- Name: .data
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC ]
# CHECK: Name: .foo
# CHECK: Name: .prefix.prefix.already_prefixed
# CHECK: Name: .prefix.text
# CHECK: Name: .rel.prefix.text
# CHECK: Name: .rela.prefix.data
# CHECK: Name: .prefix.data