mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
99ede7f0c7
Reviewers: ruiu Subscribers: llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D57845 llvm-svn: 353347
11 lines
361 B
Plaintext
11 lines
361 B
Plaintext
RUN: mkdir -p %t/foo
|
|
RUN: touch %t/foo/a.txt
|
|
RUN: rm -f %t/foo/archive.a
|
|
|
|
RUN: cd %t && llvm-ar rcST foo/archive.a foo/a.txt
|
|
RUN: cd %t && llvm-ar t foo/archive.a | FileCheck %s --match-full-lines --check-prefix=PARENT-DIR
|
|
RUN: cd %t/foo && llvm-ar t archive.a | FileCheck %s --match-full-lines --check-prefix=CHILD-DIR
|
|
|
|
PARENT-DIR: foo/a.txt
|
|
CHILD-DIR: a.txt
|