Lines Matching full:txt
8 RUN: echo hello-a > a/foo.txt
9 RUN: echo hello-b > b/foo.txt
10 RUN: echo hello-parent > foo.txt
15 RUN: llvm-ar rcST archive.a a\..\a\foo.txt
16 RUN: llvm-ar rcST archive.a foo.txt
17 RUN: llvm-ar rcST archive.a b\foo.txt b/foo.txt
18 RUN: llvm-ar dT archive.a foo.txt
21 ARCHIVE: a/foo.txt
22 ARCHIVE-NEXT: b/foo.txt
23 ARCHIVE-NEXT: b/foo.txt
26 RUN: llvm-ar t archive.a a\foo.txt | FileCheck %s --check-prefix=LIST-A --implicit-check-not {{.}}
27 RUN: llvm-ar t archive.a b\foo.txt | FileCheck %s --check-prefix=LIST-B --implicit-check-not {{.}}
29 LIST-BOTH: a/foo.txt
30 LIST-BOTH-NEXT: b/foo.txt
31 LIST-BOTH-NEXT: b/foo.txt
32 LIST-A: a/foo.txt
33 LIST-B: b/foo.txt
37 RUN: llvm-ar rcST a\nested.a a\foo.txt
38 RUN: llvm-ar rcST b\nested.a b\foo.txt
39 RUN: llvm-ar rcST nested.a a\nested.a foo.txt b\nested.a
42 NESTED: a/foo.txt
43 NESTED-NEXT: foo.txt
44 NESTED-NEXT: b/foo.txt