aboutsummaryrefslogtreecommitdiff
path: root/lld/test/ELF/linkerscript/overlay-reject.test
diff options
context:
space:
mode:
Diffstat (limited to 'lld/test/ELF/linkerscript/overlay-reject.test')
-rw-r--r--lld/test/ELF/linkerscript/overlay-reject.test13
1 files changed, 0 insertions, 13 deletions
diff --git a/lld/test/ELF/linkerscript/overlay-reject.test b/lld/test/ELF/linkerscript/overlay-reject.test
deleted file mode 100644
index fa8a2be..0000000
--- a/lld/test/ELF/linkerscript/overlay-reject.test
+++ /dev/null
@@ -1,13 +0,0 @@
-# REQUIRES: x86
-# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux /dev/null -o %t.o
-# RUN: not ld.lld %t.o --script %s -o /dev/null 2>&1 | FileCheck %s
-
-# CHECK: {{.*}}.test:{{.*}}: { expected, but got 0x3000
-# CHECK-NEXT: >>> .out.aaa 0x3000 : { *(.aaa) }
-# CHECK-NEXT: >>> ^
-
-SECTIONS {
- OVERLAY 0x1000 : AT ( 0x2000 ) {
- .out.aaa 0x3000 : { *(.aaa) }
- }
-}