aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/tools/llvm-cas/make-node.test
blob: de548af8fa2bf50d62c57e7597895c6b21efb94c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
RUN: rm -rf %t
RUN: mkdir %t

# Make some empty objects.
RUN: llvm-cas --cas %t/cas --make-node \
RUN:   --data - </dev/null >%t/empty.casid

RUN: llvm-cas --cas %t/cas --cat-node-data @%t/empty.casid |\
RUN:   FileCheck %s -check-prefix CHECK-EMPTY -allow-empty
RUN: llvm-cas --cas %t/cas --ls-node-refs @%t/empty.casid |\
RUN:   FileCheck %s -check-prefix CHECK-EMPTY -allow-empty
CHECK-EMPTY-NOT: {{.}}

# Make a complex object, which references existing ones. Reference a blob and
# other objects, and reference one of them twice to be sure they don't get
# deduped.
RUN: llvm-cas --cas %t/cas --make-blob --data /dev/null \
RUN:   >%t/empty-blob.casid
RUN: cat %t/empty.casid %t/empty.casid %t/empty-blob.casid \
RUN:   >%t/complex.refs
RUN: cat %t/complex.refs | sed -e 's,^.,CHECK: ,' > %t/complex.check
RUN: llvm-cas --cas %t/cas --make-node \
RUN:   --data %S/Inputs/oneline @%t/complex.refs \
RUN:   >%t/complex.casid
RUN: llvm-cas --cas %t/cas --cat-node-data \
RUN:   @%t/complex.casid | FileCheck %s -check-prefix COMPLEX-DATA
RUN: llvm-cas --cas %t/cas --ls-node-refs @%t/complex.casid |\
RUN:   FileCheck %t/complex.check
COMPLEX-DATA: content

RUN: llvm-cas --cas %t/cas --validate-object @%t/complex.casid

# Import from a new CAS.
RUN: llvm-cas --cas %t/new-cas --upstream-cas %t/cas --import @%t/complex.casid
RUN: llvm-cas --cas %t/new-cas --cat-node-data \
RUN:   @%t/complex.casid | FileCheck %s -check-prefix COMPLEX-DATA
RUN: llvm-cas --cas %t/new-cas --validate