diff options
Diffstat (limited to 'test/ELF/linkerscript/group.s')
-rw-r--r-- | test/ELF/linkerscript/group.s | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/test/ELF/linkerscript/group.s b/test/ELF/linkerscript/group.s new file mode 100644 index 000000000000..53a1c89ebfe3 --- /dev/null +++ b/test/ELF/linkerscript/group.s @@ -0,0 +1,56 @@ +# REQUIRES: x86 + +# RUN: mkdir -p %t.dir +# RUN: rm -f %t.dir/libxyz.a +# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t +# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux \ +# RUN: %p/Inputs/libsearch-st.s -o %t2.o +# RUN: llvm-ar rcs %t.dir/libxyz.a %t2.o + +# RUN: echo "GROUP(\"%t\")" > %t.script +# RUN: ld.lld -o %t2 %t.script +# RUN: llvm-readobj %t2 > /dev/null + +# RUN: echo "INPUT(\"%t\")" > %t.script +# RUN: ld.lld -o %t2 %t.script +# RUN: llvm-readobj %t2 > /dev/null + +# RUN: echo "GROUP(\"%t\" libxyz.a )" > %t.script +# RUN: not ld.lld -o %t2 %t.script 2>/dev/null +# RUN: ld.lld -o %t2 %t.script -L%t.dir +# RUN: llvm-readobj %t2 > /dev/null + +# RUN: echo "GROUP(\"%t\" =libxyz.a )" > %t.script +# RUN: not ld.lld -o %t2 %t.script 2>/dev/null +# RUN: ld.lld -o %t2 %t.script --sysroot=%t.dir +# RUN: llvm-readobj %t2 > /dev/null + +# RUN: echo "GROUP(\"%t\" -lxyz )" > %t.script +# RUN: not ld.lld -o %t2 %t.script 2>/dev/null +# RUN: ld.lld -o %t2 %t.script -L%t.dir +# RUN: llvm-readobj %t2 > /dev/null + +# RUN: echo "GROUP(\"%t\" libxyz.a )" > %t.script +# RUN: not ld.lld -o %t2 %t.script 2>/dev/null +# RUN: ld.lld -o %t2 %t.script -L%t.dir +# RUN: llvm-readobj %t2 > /dev/null + +# RUN: echo "GROUP(\"%t\" /libxyz.a )" > %t.script +# RUN: echo "GROUP(\"%t\" /libxyz.a )" > %t.dir/xyz.script +# RUN: not ld.lld -o %t2 %t.script 2>/dev/null +# RUN: not ld.lld -o %t2 %t.script --sysroot=%t.dir 2>/dev/null +# RUN: ld.lld -o %t2 %t.dir/xyz.script --sysroot=%t.dir +# RUN: llvm-readobj %t2 > /dev/null + +# RUN: echo "GROUP(\"%t.script2\")" > %t.script1 +# RUN: echo "GROUP(\"%t\")" > %t.script2 +# RUN: ld.lld -o %t2 %t.script1 +# RUN: llvm-readobj %t2 > /dev/null + +# RUN: echo "GROUP(AS_NEEDED(\"%t\"))" > %t.script +# RUN: ld.lld -o %t2 %t.script +# RUN: llvm-readobj %t2 > /dev/null + +.globl _start +_start: + ret |