mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-04 09:37:20 +00:00
f6da5c09fa
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@289202 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
|