1 RUN: rm -rf %t && mkdir -p %t
2 RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %t/a.obj %S/Inputs/a.s
3 RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %t/b.obj %S/Inputs/b.s
6 RUN: llvm-lib /out:%t/foo.lib %t/a.obj %t/b.obj
8 # This should ignore the two .obj files, then print the first .lib file,
9 # then ignore the 2nd one.
10 RUN: llvm-lib /list %t/a.obj %t/b.obj %t/foo.lib %t/foo.lib | FileCheck %s