1## Check we report an error when SHT_GROUP references an unknown section in its member list.
2
3# RUN: not yaml2obj %s 2>&1 | FileCheck %s
4
5# CHECK: error: unknown section referenced: '.foo' by YAML section '.group'
6# CHECK: error: unknown section referenced: '.bar' by YAML section '.group'
7
8--- !ELF
9FileHeader:
10  Class: ELFCLASS64
11  Data:  ELFDATA2LSB
12  Type:  ET_REL
13Sections:
14  - Name: .group
15    Type: SHT_GROUP
16    Members:
17      - SectionOrType: GRP_COMDAT
18      - SectionOrType: .foo
19      - SectionOrType: .bar
20