1# RUN: yaml2obj %s -o %t 2# RUN: not ld.lld %t -o /dev/null 2>&1 | FileCheck %s 3 4# CHECK: {{.*}}:(.merge): string is not null terminated 5 6!ELF 7FileHeader: 8 Class: ELFCLASS64 9 Data: ELFDATA2LSB 10 OSABI: ELFOSABI_FREEBSD 11 Type: ET_REL 12 Machine: EM_X86_64 13Sections: 14 - Type: SHT_PROGBITS 15 Name: .merge 16 Flags: [ SHF_ALLOC, SHF_MERGE, SHF_STRINGS ] 17 AddressAlign: 0x04 18 Content: "AABB" 19 EntSize: 0x2 20