[lit] Add argument check: --timeout must be non-negative integer
[llvm-core.git] / test / tools / yaml2obj / elf-comdat-broken-members.yaml
blob63cb27e23d8031c8bc90b00120c77613fd48bfb6
1 ## Check we report an error when SHT_GROUP references an unknown section in its member list.
3 # RUN: not yaml2obj %s 2>&1 | FileCheck %s
5 # CHECK: error: unknown section referenced: '.foo' by YAML section '.group'
6 # CHECK: error: unknown section referenced: '.bar' by YAML section '.group'
8 --- !ELF
9 FileHeader:
10   Class:   ELFCLASS64
11   Data:    ELFDATA2LSB
12   Type:    ET_REL
13   Machine: EM_X86_64
14 Sections:
15   - Name: .group
16     Type: SHT_GROUP
17     Link: .symtab
18     Info: 0
19     Members:
20       - SectionOrType: GRP_COMDAT
21       - SectionOrType: .foo
22       - SectionOrType: .bar