[lit] Add argument check: --timeout must be non-negative integer
[llvm-core.git] / test / tools / yaml2obj / reloc-sec-info.yaml
blob801fe02e05f2e43beb81842cf71da6b48f67ef30
1 # RUN: yaml2obj --docnum=1 %s -o %t1
2 # RUN: llvm-readobj --sections %t1 | FileCheck %s
4 # CHECK:      Name: .rela.text
5 # CHECK-NEXT: Type: SHT_RELA
6 # CHECK-NEXT: Flags [
7 # CHECK-NEXT: ]
8 # CHECK-NEXT: Address:
9 # CHECK-NEXT: Offset:
10 # CHECK-NEXT: Size:
11 # CHECK-NEXT: Link:
12 # CHECK-NEXT: Info: 12345
14 --- !ELF
15 FileHeader:
16   Class:           ELFCLASS64
17   Data:            ELFDATA2LSB
18   Type:            ET_REL
19   Machine:         EM_X86_64
20 Sections:
21   - Name:            .rela.text
22     Type:            SHT_RELA
23     Link:            .symtab
24     Info:            12345
25     Relocations:
27 ## Check we report an error when a relocation section references an unknown section via its Info field.
29 # RUN: not yaml2obj --docnum=2 %s 2>&1 | FileCheck %s --implicit-check-not=error --check-prefix=ERR
31 # ERR: error: unknown section referenced: '.unknown1' by YAML section '.foo'
32 # ERR: error: unknown section referenced: '.unknown2' by YAML section '.bar'
34 --- !ELF
35 FileHeader:
36   Class:   ELFCLASS64
37   Data:    ELFDATA2LSB
38   Type:    ET_REL
39   Machine: EM_X86_64
40 Sections:
41   - Name: .foo
42     Type: SHT_RELA
43     Info: .unknown1
44     Relocations:
45   - Name: .bar
46     Type: SHT_RELA
47     Info: .unknown2
48     Relocations:
49   - Name: .zed
50     Type: SHT_RELA
51     Info: 0xFF
52     Relocations: