diff options
Diffstat (limited to 'test/ELF/linkerscript/ouputformat.s')
-rw-r--r-- | test/ELF/linkerscript/ouputformat.s | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/ELF/linkerscript/ouputformat.s b/test/ELF/linkerscript/ouputformat.s new file mode 100644 index 0000000000000..7d4402a557a0f --- /dev/null +++ b/test/ELF/linkerscript/ouputformat.s @@ -0,0 +1,9 @@ +# REQUIRES: x86 +# RUN: echo "OUTPUT_FORMAT(x, y, z)" > %t.script +# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-freebsd %s -o %t1 +# RUN: ld.lld -shared -o %t2 %t1 %t.script +# RUN: llvm-readobj %t2 > /dev/null + +# RUN: echo "OUTPUT_FORMAT(x, y)" > %t.script +# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-freebsd %s -o %t1 +# RUN: not ld.lld -shared -o %t2 %t1 %t.script |