In this diff the elf-specific tests are moved into the subfolder llvm-objcopy/ELF (the change was discussed in the comments on https://reviews.llvm.org/D54674). A separate code reivew wasn't sent for this change since Phabricator is failing to create such a large diff. Test plan: make check-all make check-llvm-tools make check-llvm-tools-llvm-objcopy llvm-svn: 347958
24 lines
558 B
Plaintext
24 lines
558 B
Plaintext
# RUN: yaml2obj %s > %t
|
|
# RUN: llvm-objcopy -only-keep=.test %t %t2
|
|
# RUN: llvm-objcopy -j .test %t %t3
|
|
# RUN: llvm-readobj -file-headers -sections %t2 | FileCheck %s
|
|
# RUN: diff %t2 %t3
|
|
|
|
!ELF
|
|
FileHeader:
|
|
Class: ELFCLASS64
|
|
Data: ELFDATA2LSB
|
|
Type: ET_REL
|
|
Machine: EM_X86_64
|
|
Sections:
|
|
- Name: .test
|
|
Type: SHT_PROGBITS
|
|
Flags: [ ]
|
|
|
|
# CHECK: SectionHeaderCount: 5
|
|
|
|
# CHECK: Name: .test
|
|
# CHECK: Name: .symtab
|
|
# CHECK: Name: .strtab
|
|
# CHECK: Name: .shstrtab
|