summaryrefslogtreecommitdiff
path: root/test/ELF/linkerscript/outputarch.s
diff options
context:
space:
mode:
Diffstat (limited to 'test/ELF/linkerscript/outputarch.s')
-rw-r--r--test/ELF/linkerscript/outputarch.s10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/ELF/linkerscript/outputarch.s b/test/ELF/linkerscript/outputarch.s
new file mode 100644
index 0000000000000..99089615cb17d
--- /dev/null
+++ b/test/ELF/linkerscript/outputarch.s
@@ -0,0 +1,10 @@
+# REQUIRES: x86
+# RUN: echo "OUTPUT_ARCH(x)" > %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_ARCH(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
+# RUN: llvm-readobj %t2 > /dev/null