[llvm-nm] - Fix a bug and unbreak ASan BB.
[llvm-complete.git] / test / Object / archive-thin-create.test
blob55abe0002f95ff156e278ff0580e4485b026fd33
1 RUN: rm -rf %t
2 RUN: mkdir -p %t
3 RUN: cd %t
4 RUN: mkdir -p foo
5 RUN: touch foo/test1.o
6 RUN: touch foo/test2.o
7 RUN: llvm-ar qcT foo/libtest.a foo/test1.o
8 RUN: llvm-ar qcT foo/libtest.a foo/test1.o
9 RUN: llvm-ar qcT foo/libtest.a foo/test2.o
10 RUN: llvm-ar t foo/libtest.a | FileCheck --match-full-lines %s
12 CHECK: foo/test1.o
13 CHECK: foo/test1.o
14 CHECK: foo/test2.o