2 # RUN: rm -rf %t && mkdir -p %t
4 ## In this test, we check that able to report objects with
5 ## invalid ELF class type. There are 2 cases we want to check:
6 ## when the object is a regular input and when it is fetched from the archive.
8 ## Create a broken ELF object with ELFCLASSNONE class using echo. We need to fill
9 ## first 18 bytes which are used by LLD to check the object.
10 ## 0x7f, 'E', 'L', 'F', ELFCLASSNONE(0), ELFDATA2LSB(1),
11 ## EV_CURRENT(1), ELFOSABI_LINUX(3), <padding zero bytes>, ET_REL(1), EM_NONE(0)
12 # RUN: echo -e -n "\x7f\x45\x4c\x46\x00\x01\x01\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" > %t/invalid.o
14 # RUN: llvm-ar --format=gnu crS %t/invalid-class.a %t/invalid.o
15 # RUN: not ld.lld -whole-archive %t/invalid-class.a -o /dev/null 2>&1 | FileCheck %s
16 # CHECK: invalid-class.a(invalid.o): corrupted ELF file: invalid file class
18 # RUN: not ld.lld %t/invalid.o -o /dev/null 2>&1 | FileCheck %s --check-prefix=OBJ
19 # OBJ: invalid.o: corrupted ELF file: invalid file class