Lines Matching full:txt
10 # RUN: echo filea > %t/a.txt
11 # RUN: echo fileb > %t/b.txt
12 # RUN: llvm-ar rc %t/archive.a %t/a.txt %t/b.txt
15 # RUN: cd %t/extracted && llvm-ar xv %t/archive.a a.txt | FileCheck %s --check-prefix=A
16 # RUN: diff %t/a.txt %t/extracted/a.txt
17 # A: x - a.txt
20 # RUN: rm %t/extracted/a.txt
22 # RUN: diff %t/a.txt %t/extracted/a.txt
23 # RUN: diff %t/b.txt %t/extracted/b.txt
24 # AB: x - a.txt
25 # AB: x - b.txt
33 # RUN: rm a.txt b.txt
35 # RUN: diff %t/a.txt %t/extracted/a.txt
36 # RUN: diff %t/b.txt %t/extracted/b.txt
40 # RUN: diff %t/a.txt %t/extracted/1/2/a.txt
41 # RUN: diff %t/b.txt %t/extracted/1/2/b.txt
44 # RUN: rm 1/2/a.txt
45 # RUN: llvm-ar xv %t/archive.a a.txt --output %t/extracted/1/2/../2 | FileCheck %s --check-prefix=O…
46 # RUN: diff %t/a.txt %t/extracted/1/2/a.txt
47 # OUTPUT-A: x - {{.*}}extracted{{.*}}a.txt
49 # RUN: not llvm-ar x --output=%t/a.txt %t/archive.a 2>&1 | FileCheck %s --check-prefix=OUTPUT-NOTDIR
50 # RUN: not llvm-ar x --output=%t/b.txt/a.txt %t/archive.a 2>&1 | FileCheck %s --check-prefix=OUTPUT…
51 # OUTPUT-NOTDIR: error: '{{.*}}a.txt' is not a directory
53 # RUN: not llvm-ar rc --output=1/2 %t/archive.a %t/a.txt 2>&1 | FileCheck %s --check-prefix=OUTPUT-…