Lines Matching full:multiple
19 ## Append multiple members:
20 # RUN: llvm-ar qc %t/multiple.a %t/1.o %t/2.o
21 # RUN: llvm-ar t %t/multiple.a \
22 # RUN: | FileCheck %s --check-prefix=MULTIPLE --match-full-lines --implicit-check-not {{.}}
24 # MULTIPLE: 1.o{{$}}
25 # MULTIPLE-NEXT: 2.o{{$}}
27 # RUN: llvm-nm --print-armap %t/multiple.a \
28 # RUN: | FileCheck %s --check-prefix=MULTIPLE-SYM
30 # MULTIPLE-SYM: symbol1 in 1.o
31 # MULTIPLE-SYM-NEXT: symbol2 in 2.o
66 # RUN: llvm-ar qcT %t/thin-multiple.a %t/1.o
67 # RUN: llvm-ar qcT %t/thin-multiple.a %t/2.o
68 # RUN: llvm-ar t %t/thin-multiple.a \
69 # RUN: | FileCheck %s --check-prefix=MULTIPLE