diff options
Diffstat (limited to 'test/ELF/linkerscript/lazy-symbols.test')
-rw-r--r-- | test/ELF/linkerscript/lazy-symbols.test | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/test/ELF/linkerscript/lazy-symbols.test b/test/ELF/linkerscript/lazy-symbols.test deleted file mode 100644 index f409b839c4dd..000000000000 --- a/test/ELF/linkerscript/lazy-symbols.test +++ /dev/null @@ -1,15 +0,0 @@ -# REQUIRES: x86 -# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %S/Inputs/lazy-symbols.s -o %t1 -# RUN: rm -f %tar -# RUN: llvm-ar rcs %tar %t1 -# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux /dev/null -o %t2 -# RUN: ld.lld %t2 %tar --script %s -o %tout -# RUN: llvm-readobj -symbols %tout | FileCheck %s - -foo = 1; - -# This test is to ensure a linker script can define a symbol which have the same -# name as a lazy symbol. - -# CHECK: Name: foo -# CHECK-NEXT: Value: 0x1 |