1# RUN: yaml2obj %s -o %t 2# RUN: llvm-objcopy --strip-non-alloc --keep-section=.test %t %t2 3# RUN: llvm-strip --strip-all --keep-section=.test %t -o %t3 4# RUN: llvm-readobj --file-headers --sections %t2 | FileCheck %s 5# RUN: cmp %t2 %t3 6 7!ELF 8FileHeader: 9 Class: ELFCLASS64 10 Data: ELFDATA2LSB 11 Type: ET_REL 12 Machine: EM_X86_64 13Sections: 14 - Name: .test 15 Type: SHT_PROGBITS 16 Flags: [ ] 17 18# CHECK: SectionHeaderCount: 3 19 20# CHECK: Name: .test 21# CHECK: Name: .shstrtab 22