summaryrefslogtreecommitdiff
path: root/test/ELF/linkerscript/expr-invalid-sec.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/ELF/linkerscript/expr-invalid-sec.test')
-rw-r--r--test/ELF/linkerscript/expr-invalid-sec.test9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/ELF/linkerscript/expr-invalid-sec.test b/test/ELF/linkerscript/expr-invalid-sec.test
deleted file mode 100644
index 946062a0c5751..0000000000000
--- a/test/ELF/linkerscript/expr-invalid-sec.test
+++ /dev/null
@@ -1,9 +0,0 @@
-# REQUIRES: x86
-# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux /dev/null -o %t.o
-# RUN: not ld.lld -o %t.so --script %s %t.o -shared 2>&1 | FileCheck %s
-
-# CHECK: error: {{.*}}.test:8: at least one side of the expression must be absolute
-
-SECTIONS {
- foo = ADDR(.text) + ADDR(.text);
-};