[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / tools / llvm-ar / extract.test
blobfec5e4bb9969374d6d00037c0ed8ca82ef8f28ce
1 ## Test extract operation.
2 # XFAIL: system-darwin
4 # RUN: rm -rf %t && mkdir -p %t/extracted/
6 ## Extracting from an empty archive should not warn or error:
7 # RUN: llvm-ar cr %t/empty.a
8 # RUN: llvm-ar xv %t/empty.a 2>&1 | count 0
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
14 ## Single member:
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
19 ## All members:
20 # RUN: rm %t/extracted/a.txt
21 # RUN: cd %t/extracted && llvm-ar xv %t/archive.a | FileCheck %s --check-prefix=AB
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
27 ## Thin archive 
28 # RUN: llvm-ar Trc %t/thin-archive.a
29 # RUN: not llvm-ar x %t/thin-archive.a 2>&1 | FileCheck %s --check-prefix=THIN
30 # THIN: extracting from a thin archive is not supported
32 ## No output if 'v' is not specified.
33 # RUN: rm a.txt b.txt
34 # RUN: llvm-ar x %t/archive.a 2>&1 | count 0
35 # RUN: diff %t/a.txt %t/extracted/a.txt
36 # RUN: diff %t/b.txt %t/extracted/b.txt