aboutsummaryrefslogtreecommitdiff
path: root/test/pecoff/baseaddr.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/pecoff/baseaddr.test')
-rw-r--r--test/pecoff/baseaddr.test18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/pecoff/baseaddr.test b/test/pecoff/baseaddr.test
deleted file mode 100644
index dbd091bc2e30..000000000000
--- a/test/pecoff/baseaddr.test
+++ /dev/null
@@ -1,18 +0,0 @@
-# RUN: yaml2obj %p/Inputs/nop.obj.yaml > %t.obj
-#
-# RUN: lld -flavor link /out:%t1.exe /opt:noref /subsystem:console /force \
-# RUN: -- %t.obj
-# RUN: llvm-readobj -file-headers %t1.exe | FileCheck -check-prefix=DEFAULT %s
-#
-# RUN: lld -flavor link /out:%t2.exe /opt:noref /base:8388608 \
-# RUN: /subsystem:console /force -- %t.obj
-# RUN: llvm-readobj -file-headers %t2.exe | FileCheck -check-prefix=BASE %s
-
-DEFAULT: ImageBase: 0x400000
-
-BASE: ImageBase: 0x800000
-
-# RUN: not lld -flavor link /base:3 /subsystem:console -- %t.obj >& %t.log
-# RUN: FileCheck -check-prefix=ERROR %s < %t.log
-
-ERROR: Base address have to be multiple of 64K, but got 3