64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
16 lines
358 B
Plaintext
16 lines
358 B
Plaintext
RUN: rm -rf %t
|
|
RUN: mkdir -p %t
|
|
RUN: cd %t
|
|
RUN: mkdir -p foo
|
|
RUN: touch foo/test1.o
|
|
RUN: touch foo/test2.o
|
|
RUN: llvm-ar qcT foo/libtest.a foo/test1.o
|
|
RUN: llvm-ar qcT foo/libtest.a foo/test1.o
|
|
RUN: llvm-ar qcT foo/libtest.a foo/test2.o
|
|
RUN: llvm-ar t foo/libtest.a | FileCheck --match-full-lines %s
|
|
|
|
CHECK: foo/test1.o
|
|
CHECK: foo/test1.o
|
|
CHECK: foo/test2.o
|
|
|