diff options
Diffstat (limited to 'llvm/test/tools/llvm-objcopy/ELF/only-section-strip-non-alloc.test')
| -rw-r--r-- | llvm/test/tools/llvm-objcopy/ELF/only-section-strip-non-alloc.test | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/llvm/test/tools/llvm-objcopy/ELF/only-section-strip-non-alloc.test b/llvm/test/tools/llvm-objcopy/ELF/only-section-strip-non-alloc.test new file mode 100644 index 00000000000..f61b4ae664c --- /dev/null +++ b/llvm/test/tools/llvm-objcopy/ELF/only-section-strip-non-alloc.test @@ -0,0 +1,19 @@ +# RUN: yaml2obj %s > %t +# RUN: llvm-objcopy -strip-non-alloc -only-section=.test %t %t2 +# RUN: llvm-readobj -file-headers -sections %t2 | FileCheck %s + +!ELF +FileHeader: + Class: ELFCLASS64 + Data: ELFDATA2LSB + Type: ET_REL + Machine: EM_X86_64 +Sections: + - Name: .test + Type: SHT_PROGBITS + Flags: [ ] + +# CHECK: SectionHeaderCount: 3 + +# CHECK: Name: .test +# CHECK: Name: .shstrtab |

