1*20910f46SMartin StorsjoRUN: rm -rf %t && mkdir -p %t 2*20910f46SMartin StorsjoRUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %t/a.obj %S/Inputs/a.s 3*20910f46SMartin StorsjoRUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %t/b.o %S/Inputs/b.s 4*20910f46SMartin StorsjoRUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %t/c %S/Inputs/b.s 5*20910f46SMartin Storsjo 6*20910f46SMartin StorsjoRUN: rm -f %t/a.lib 7*20910f46SMartin StorsjoRUN: llvm-lib %t/a.obj 8*20910f46SMartin StorsjoRUN: test -e %t/a.lib 9*20910f46SMartin Storsjo 10*20910f46SMartin StorsjoRUN: rm -f %t/b.lib 11*20910f46SMartin StorsjoRUN: llvm-lib /libpath:%t b.o 12*20910f46SMartin StorsjoRUN: test -e %t/b.lib 13*20910f46SMartin Storsjo 14*20910f46SMartin StorsjoRUN: rm -f %t/c.lib 15*20910f46SMartin StorsjoRUN: llvm-lib /libpath:%t c 16*20910f46SMartin StorsjoRUN: test -e %t/c.lib 17