diff options
author | George Rimar <grimar@accesssoftek.com> | 2018-03-01 10:38:51 +0000 |
---|---|---|
committer | George Rimar <grimar@accesssoftek.com> | 2018-03-01 10:38:51 +0000 |
commit | f3e93b23f74b3d1777062d37c6dfbc8cee0396e0 (patch) | |
tree | d5b34bc0c0f608a76086fc6caa9c8ae34c4b91de | |
parent | 2a9ea781f365a1c34057c072efcd4efbdeee821e (diff) | |
download | bcm5719-llvm-f3e93b23f74b3d1777062d37c6dfbc8cee0396e0.tar.gz bcm5719-llvm-f3e93b23f74b3d1777062d37c6dfbc8cee0396e0.zip |
[ELF] - Fix eh-frame-reloc-out-of-range.test.
Was broken after recent testcases changes.
llvm-svn: 326427
-rw-r--r-- | lld/test/ELF/linkerscript/eh-frame-reloc-out-of-range.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/test/ELF/linkerscript/eh-frame-reloc-out-of-range.test b/lld/test/ELF/linkerscript/eh-frame-reloc-out-of-range.test index c64a27440b4..7f4df21fd4c 100644 --- a/lld/test/ELF/linkerscript/eh-frame-reloc-out-of-range.test +++ b/lld/test/ELF/linkerscript/eh-frame-reloc-out-of-range.test @@ -1,6 +1,6 @@ # REQUIRES: x86 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %p/Inputs/eh-frame-reloc-out-of-range.s -o %t.o -# RUN: not ld.lld %t.o -T %t.script -o %t 2>&1 | FileCheck %s +# RUN: not ld.lld %t.o -T %s -o %t 2>&1 | FileCheck %s PHDRS { eh PT_LOAD; text PT_LOAD; } SECTIONS { . = 0x10000; |