Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / tools / llvm-ar / mri-thin-archive.test
blob8010cb998beb9234349ca472f7a05fd1d632f657
1 # UNSUPPORTED: system-aix
2 # RUN: rm -rf %t && mkdir -p %t/addlib/ && split-file %s %t
3 # RUN: cd %t
5 # RUN: yaml2obj %S/Inputs/elf.yaml -o %t/elf.o
6 # RUN: cp %t/elf.o %t/addlib/elf.o
7 # RUN: cp %t/elf.o %t/delete.o
9 # RUN: llvm-ar rc --thin addlib/thin.ar addlib/elf.o
10 # RUN: llvm-ar rc addlib/regular.ar addlib/elf.o
12 # RUN: llvm-ar -M < thin.script
13 # RUN: FileCheck -input-file=archive.ar %s --check-prefixes=THIN --implicit-check-not=delete.o --match-full-lines
15 # THIN: !<thin>
16 # THIN: elf.o/
17 # THIN-NEXT: addlib/elf.o/
19 # RUN: llvm-ar -M < thin-to-regular.script
20 # RUN: FileCheck -input-file=regular.ar %s --check-prefixes=REGULAR
22 # REGULAR: !<arch>
24 # RUN: not llvm-ar -M < regular-to-thin.script 2>&1 | FileCheck %s --check-prefix=ERROR
25 # RUN: not ls thin.ar
26 # ERROR: error: script line 2: cannot add a regular archive's contents to a thin archive
28 #--- thin.script
29 createthin archive.ar
30 addmod elf.o
31 addlib addlib/thin.ar
32 addmod delete.o
33 delete delete.o
34 save
35 end
37 #--- thin-to-regular.script
38 create regular.ar
39 addlib addlib/thin.ar
40 save
41 end
43 #--- regular-to-thin.script
44 createthin thin.ar
45 addlib addlib/regular.ar
46 save
47 end