diff options
author | George Rimar <grimar@accesssoftek.com> | 2018-08-16 13:02:50 +0000 |
---|---|---|
committer | George Rimar <grimar@accesssoftek.com> | 2018-08-16 13:02:50 +0000 |
commit | ff22b43c7de8bcc5e0072fbe7c0dd340a397111a (patch) | |
tree | 8f5396c056e495ed06300457548a6834588a0d12 | |
parent | 039f556f44e366e70d174be1026080bdb6c23995 (diff) | |
download | bcm5719-llvm-ff22b43c7de8bcc5e0072fbe7c0dd340a397111a.tar.gz bcm5719-llvm-ff22b43c7de8bcc5e0072fbe7c0dd340a397111a.zip |
[LLD][ELF] - Add a test case.
This covers the following line with a test:
https://github.com/llvm-mirror/lld/blob/master/ELF/InputFiles.cpp#L487
llvm-svn: 339876
-rw-r--r-- | lld/test/ELF/invalid/linkorder-invalid-sec.test | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lld/test/ELF/invalid/linkorder-invalid-sec.test b/lld/test/ELF/invalid/linkorder-invalid-sec.test new file mode 100644 index 00000000000..d4aa376639c --- /dev/null +++ b/lld/test/ELF/invalid/linkorder-invalid-sec.test @@ -0,0 +1,16 @@ +# REQUIRES: x86 +# RUN: yaml2obj %s -o %t.o +# RUN: not ld.lld %t.o -o %t.exe 2>&1 | FileCheck %s +# CHECK: invalid sh_link index: 12345 + +--- !ELF +FileHeader: + Class: ELFCLASS64 + Data: ELFDATA2LSB + Type: ET_REL + Machine: EM_X86_64 +Sections: + - Name: .linkorder + Type: SHT_PROGBITS + Flags: [ SHF_ALLOC, SHF_EXECINSTR, SHF_LINK_ORDER ] + Link: 12345 |