blob: a5dfbdf6e5d7d9f9c3b38f93be5f129d05f9a713 (
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
55
56
57
58
|
import testing ;
lib boost_utf : : <name>boost_unit_test_framework ;
path-constant me : . ;
lib testMocks :
[ glob mock*.cpp ]
:
<library>..//Ice
<library>..//stdc++fs
<library>../daemon//netfsd++11
<library>../fuse//netfs-client
<library>../ice//netfs-api
<library>..//adhocutil
<define>BOOST_TEST_DYN_LINK
<library>boost_utf
<define>ROOT=\"$(me)\"
: :
<library>..//adhocutil
<library>..//stdc++fs
<library>../daemon//netfsd++11
<library>../fuse//netfs-client
<define>ROOT=\"$(me)\"
;
run testCore.cpp
: : :
<dependency>defaultDaemon.xml
<dependency>defaultFuse.xml
<dependency>altDaemon.xml
<dependency>altFuse.xml
<dependency>secureDaemon.xml
<dependency>secureFuse.xml
<define>BOOST_TEST_DYN_LINK
<library>boost_utf
<library>testMocks
: testCore ;
run testGlacier.cpp
: : :
<dependency>defaultDaemon.xml
<dependency>defaultFuse.xml
<define>BOOST_TEST_DYN_LINK
<library>boost_utf
<library>testMocks
: testGlacier ;
run testEdgeCases.cpp
: --log_level=all : :
<dependency>defaultDaemon.xml
<dependency>defaultFuse.xml
<define>BOOST_TEST_DYN_LINK
<library>boost_utf
<library>testMocks
: testEdgeCases ;
|