3 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
4 # RUN: ld.lld %t.o -o %t1
5 #RUN: llvm-objdump --section-headers %t1 | FileCheck %s --check-prefix BEFORE
7 #BEFORE-NEXT: .shstrtab
10 #RUN: ld.lld %t.o --strip-all -o %t1
11 #RUN: llvm-objdump --section-headers %t1 | FileCheck %s --check-prefix AFTER
16 # Ignore --strip-all if -r is specified
17 #RUN: ld.lld %t.o --strip-all -r -o %t1
18 #RUN: llvm-objdump --section-headers %t1 | FileCheck %s --check-prefix BEFORE
21 #RUN: ld.lld %t.o -s -o %t1
22 #RUN: llvm-objdump --section-headers %t1 | FileCheck %s --check-prefix AFTER
24 # RUN: not ld.lld %t.o --strip-all --emit-relocs -o /dev/null 2>&1 | FileCheck --check-prefix=ERR %s
25 # ERR: error: --strip-all and --emit-relocs may not be used together
27 # exits with return code 42 on linux