blob: 63ba9d158b5822deb2dcd2d25206cbcb3bc81730 [file] [log] [blame]
# RUN: yaml2obj %s -o %t.o
# RUN: not llvm-objcopy -R .foo %t.o %t1 2>&1 >/dev/null | FileCheck %s --check-prefix=ERR
# RUN: cp %t.o %t2
## Use --strip-debug to suppress the default --strip-all behavior of llvm-strip.
## TODO: Implement a better way to suppress --strip-all behavior.
# RUN: not llvm-strip --strip-debug -R .foo %t2 2>&1 >/dev/null | FileCheck %s --check-prefix=ERR
--- !ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
Type: ET_REL
Machine: EM_X86_64
Sections:
- Name: .foo
Type: SHT_PROGBITS
- Name: .bar
Type: SHT_PROGBITS
Link: .foo
# ERR: Section .foo cannot be removed because it is referenced by the section .bar
# RUN: llvm-objcopy --allow-broken-links -R .foo %t.o %t3
# RUN: llvm-readobj --sections %t3 | FileCheck %s --check-prefix=SECTIONS --implicit-check-not=.foo
# RUN: cp %t.o %t4
# RUN: llvm-strip --strip-debug --allow-broken-links -R .foo %t4
# RUN: llvm-readobj --sections %t4 | FileCheck %s --check-prefix=SECTIONS --implicit-check-not=.foo
# SECTIONS: Name: .bar
# SECTIONS: Link
# SECTIONS-SAME: : 0