diff options
Diffstat (limited to 'test/ELF/invalid/comdat-broken.test')
-rw-r--r-- | test/ELF/invalid/comdat-broken.test | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test/ELF/invalid/comdat-broken.test b/test/ELF/invalid/comdat-broken.test new file mode 100644 index 0000000000000..9ff8eca476a5a --- /dev/null +++ b/test/ELF/invalid/comdat-broken.test @@ -0,0 +1,25 @@ +# REQUIRES: x86 + +# RUN: yaml2obj %s -o %t.o +# RUN: not ld.lld %t.o -o %t.exe 2>&1 | FileCheck %s +# RUN: not ld.lld %t.o %t.o -o %t.exe 2>&1 | FileCheck %s + +# CHECK: error: {{.*}}.o: unsupported SHT_GROUP format + +--- !ELF +FileHeader: + Class: ELFCLASS64 + Data: ELFDATA2LSB + Type: ET_REL + Machine: EM_X86_64 +Sections: + - Name: .group + Type: SHT_GROUP + Link: .symtab + Info: foo + Members: + - SectionOrType: 0xFF + - SectionOrType: 3 +Symbols: + Global: + - Name: foo |