1RUN: yaml2obj %S/Inputs/elf.yaml -o %t.o
2RUN: rm -f %t.ar
3
4RUN: echo "create %t.ar;comment" > %t.mri
5RUN: echo "addmod %t.o * comment" >> %t.mri
6RUN: echo "; comment" >> %t.mri
7RUN: echo " ;comment" >> %t.mri
8RUN: echo "* comment" >> %t.mri
9RUN: echo " *comment" >> %t.mri
10RUN: echo "" >> %t.mri
11RUN: echo " " >> %t.mri
12RUN: echo "addmod %S/Inputs/elf.yaml" >> %t.mri
13RUN: echo "delete %t.o" >> %t.mri
14RUN: echo " save" >> %t.mri
15RUN: echo "end" >> %t.mri
16
17RUN: llvm-ar -M < %t.mri
18RUN: llvm-ar tv %t.ar | FileCheck %s
19
20CHECK-NOT: mri-delete.test{{.*}}.o
21