19 lines · plain
1RUN: rm -rf %t2RUN: mkdir -p %t3RUN: cd %t4RUN: mkdir -p foo5RUN: touch foo/test1.o6RUN: touch foo/test2.o7RUN: llvm-ar qcT foo/libtest.a foo/test1.o8RUN: llvm-ar qcT foo/libtest.a foo/test1.o9RUN: llvm-ar qcT foo/libtest.a foo/test2.o10RUN: llvm-ar t foo/libtest.a | FileCheck --match-full-lines %s11 12O (displaying member offsets) is ignored for thin archives.13RUN: llvm-ar tO foo/libtest.a | FileCheck --match-full-lines %s14 15CHECK: foo/test1.o16CHECK: foo/test1.o17CHECK: foo/test2.o18 19