[InstCombine] Signed saturation patterns
[llvm-core.git] / test / tools / llvm-readobj / elf-broken-dynamic-reloc-name.test
blob25b8db4e14df98232fd3039dad435ade099455a6
1 ## Check that llvm-readobj/llvm-readelf reports an error when dumping relocations if a dynamic
2 ## symbol name offset is broken (goes past the end of the dynamic symbol string table).
4 # RUN: yaml2obj %s -o %t
5 # RUN: llvm-readobj --dyn-relocations %t 2>&1 | FileCheck %s -DFILE=%t --check-prefix=LLVM
6 # RUN: llvm-readelf --dyn-relocations %t 2>&1 | FileCheck %s -DFILE=%t --check-prefix=GNU
8 # LLVM:      Dynamic Relocations {
9 # LLVM-EMPTY:
10 # LLVM-NEXT: warning: '[[FILE]]': unable to get name of the dynamic symbol with index 1: st_name (0x1234) is past the end of the string table of size 0x1
11 # LLVM-NEXT:   0x0 R_X86_64_NONE <corrupt> 0x0
12 # LLVM-NEXT: }
14 # GNU:      'RELA' relocation section at offset {{.+}} contains 24 bytes:
15 # GNU-NEXT: Offset           Info             Type          Symbol's Value   Symbol's Name + Addend
16 # GNU-EMPTY:
17 # GNU-NEXT: warning: '[[FILE]]': unable to get name of the dynamic symbol with index 1: st_name (0x1234) is past the end of the string table of size 0x1
18 # GNU-NEXT: 0000000000000000 0000000100000000 R_X86_64_NONE 0000000000000000 <corrupt> + 0
20 --- !ELF
21 FileHeader:
22   Class:   ELFCLASS64
23   Data:    ELFDATA2LSB
24   Type:    ET_DYN
25   Machine: EM_X86_64
26 Sections:
27   - Name:    .rela.dyn
28     Type:    SHT_RELA
29     Link:    .dynsym
30     Relocations:
31       - Offset: 0x0
32         Symbol: 1 ## Index of a dynamic symbol with a broken st_name.
33         Type:   R_X86_64_NONE
34   - Name: .dynamic
35     Type: SHT_DYNAMIC
36     Entries:
37       - Tag:   DT_RELA
38         Value: 0x0000000000000000
39       - Tag:   DT_RELASZ
40         Value: 0x0000000000000018
41       - Tag:   DT_RELAENT
42         Value: 0x0000000000000018
43       - Tag:   DT_NULL
44         Value: 0x0000000000000000
45 DynamicSymbols:
46   - NameIndex: 0x1234
47 ProgramHeaders:
48   - Type:  PT_LOAD
49     Sections:
50       - Section: .rela.dyn
51       - Section: .dynamic