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
12O (displaying member offsets) is ignored for thin archives.
13RUN: llvm-ar tO foo/libtest.a | FileCheck --match-full-lines %s
14
15CHECK: foo/test1.o
16CHECK: foo/test1.o
17CHECK: foo/test2.o
18
19