diff options
author | George Rimar <grimar@accesssoftek.com> | 2018-06-28 09:34:59 +0000 |
---|---|---|
committer | George Rimar <grimar@accesssoftek.com> | 2018-06-28 09:34:59 +0000 |
commit | 488a894bde10351bdd71fbe88a585a7fe496a374 (patch) | |
tree | 10a7e10ef82db88e8bd3627615f03eef3d7c13e9 | |
parent | fecd315ff9cd94381d5dc0adf4a9b25fe5c9d83d (diff) | |
download | bcm5719-llvm-488a894bde10351bdd71fbe88a585a7fe496a374.tar.gz bcm5719-llvm-488a894bde10351bdd71fbe88a585a7fe496a374.zip |
[ELF] - Add test case to cover "unexpected end of CIE" error.
It was uncovered by our test cases.
llvm-svn: 335819
-rw-r--r-- | lld/test/ELF/invalid-eh-frame.s | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lld/test/ELF/invalid-eh-frame.s b/lld/test/ELF/invalid-eh-frame.s new file mode 100644 index 00000000000..2a29039d03e --- /dev/null +++ b/lld/test/ELF/invalid-eh-frame.s @@ -0,0 +1,17 @@ +# REQUIRES: x86 + +# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t +# RUN: not ld.lld --eh-frame-hdr %t -o %t2 2>&1 | FileCheck %s + +# CHECK: error: corrupted .eh_frame: unexpected end of CIE +# CHECK-NEXT: >>> defined in {{.*}}:(.eh_frame+0x8) + +.section .eh_frame + .byte 0x04 + .byte 0x00 + .byte 0x00 + .byte 0x00 + .byte 0x00 + .byte 0x00 + .byte 0x00 + .byte 0x00 |