blob: 0d0c1bcdf57a23cefb45886af353a1ffc425818f (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# file : tests/fetch.test
# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
.include common.test project.test
cxx = cc "config.cxx=$config.cxx"
new += 2>!
init += $cxx -d prj 2>!
status += --all -d prj
deinit += -d prj
: dependency
:
{
$clone_prj;
$init -C @cfg &prj-cfg/***;
$new -t lib libbar &libbar/*** 2>!;
$new -t lib libfoo &libfoo/*** 2>!;
cat <<EOI >+prj/repositories.manifest;
:
role: prerequisite
location: ../libfoo
type: dir
:
role: complement
location: ../libbar
type: dir
EOI
cat <<EOI >+prj/manifest;
depends: libfoo
depends: libbar
EOI
$* 2>>/"EOE";
fetching dir:$~/libbar \(complements dir:$~/prj\)
fetching dir:$~/libfoo \(prerequisite of dir:$~/prj\)
EOE
$status libfoo libbar >>~%EOO%;
%libfoo available \[.+\]%
%libbar available .+%
EOO
$deinit 2>>/"EOE"
deinitializing in project $~/prj/
synchronizing:
drop prj
EOE
}
|