blob: 627c847b1333975fc1b87175c3180b080f6fc77b [file] [log] [blame]
Rui Ueyama64a362e2019-10-02 05:24:24 +00001If an archive file is specified as an input file, its members
2are added to an output file. This test verifies that beahvior.
3
4RUN: rm -rf %t
5RUN: mkdir -p %t
6
7RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %t/foo.o %S/Inputs/a.s
8RUN: llvm-lib -out:%t/foo.lib %t/foo.o
9
10RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %t/bar.o %S/Inputs/b.s
11RUN: llvm-lib -out:%t/bar.lib %t/foo.lib %t/bar.o
12
13RUN: llvm-ar t %t/bar.lib | FileCheck %s
14CHECK: foo.o
15CHECK: bar.o