1RUN: rm -rf %t
2RUN: mkdir -p %t
3RUN: cd %t
4RUN: mkdir -p foo
5RUN: touch foo/test1.o
6RUN: touch foo/test2.o
7RUN: llvm-ar qcT foo/libtest.a foo/test1.o
8RUN: llvm-ar qcT foo/libtest.a foo/test1.o
9RUN: llvm-ar qcT foo/libtest.a foo/test2.o
10RUN: llvm-ar t foo/libtest.a | FileCheck --match-full-lines %s
11
12CHECK: foo/test1.o
13CHECK: foo/test1.o
14CHECK: foo/test2.o
15
16