-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.build
66 lines (54 loc) · 3.4 KB
/
meson.build
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
59
60
61
62
63
64
65
e2sartest = executable('e2sar_test', 'e2sar_test.cpp',
include_directories : inc,
link_with : libe2sar,
dependencies: [boost_dep, thread_dep, grpc_dep, protobuf_dep])
boosttest = executable('boost_test', 'boost_test.cpp',
include_directories: inc,
dependencies: [boost_dep, thread_dep, protobuf_dep])
e2sar_uri_test = executable('e2sar_uri_test', 'e2sar_uri_test.cpp',
include_directories: inc,
link_with: libe2sar,
dependencies: [boost_dep, grpc_dep, protobuf_dep])
e2sar_lbcp_test = executable('e2sar_lbcp_test', 'e2sar_lbcp_test.cpp',
include_directories: inc,
link_with: libe2sar,
dependencies: [boost_dep, thread_dep, grpc_dep, protobuf_dep, stdcppfs_dep])
e2sar_lbcp_live_test = executable('e2sar_lbcp_live_test', 'e2sar_lbcp_live_test.cpp',
include_directories: inc,
link_with: libe2sar,
dependencies: [boost_dep, thread_dep, grpc_dep, protobuf_dep])
e2sar_sync_test = executable('e2sar_sync_test', 'e2sar_sync_test.cpp',
include_directories: inc,
link_with: libe2sar,
dependencies: [boost_dep, thread_dep, grpc_dep, protobuf_dep])
e2sar_sync_live_test = executable('e2sar_sync_live_test', 'e2sar_sync_live_test.cpp',
include_directories: inc,
link_with: libe2sar,
dependencies: [boost_dep, thread_dep, grpc_dep, protobuf_dep])
e2sar_seg_test = executable('e2sar_seg_test', 'e2sar_seg_test.cpp',
include_directories: inc,
link_with: libe2sar,
dependencies: [boost_dep, thread_dep, grpc_dep, protobuf_dep])
e2sar_seg_live_test = executable('e2sar_seg_live_test', 'e2sar_seg_live_test.cpp',
include_directories: inc,
link_with: libe2sar,
dependencies: [boost_dep, thread_dep, grpc_dep, protobuf_dep])
e2sar_reas_live_test = executable('e2sar_reas_live_test', 'e2sar_reas_live_test.cpp',
include_directories: inc,
link_with: libe2sar,
dependencies: [boost_dep, thread_dep, grpc_dep, protobuf_dep])
e2sar_reas_test = executable('e2sar_reas_test', 'e2sar_reas_test.cpp',
include_directories: inc,
link_with: libe2sar,
dependencies: [boost_dep, thread_dep, grpc_dep, protobuf_dep])
# these are standalone unit tests with no dependencies
test('URITests', e2sar_uri_test, suite: 'unit')
test('LBCPTests', e2sar_lbcp_test, suite: 'unit')
test('DPSyncTests', e2sar_sync_test, suite: 'unit')
test('DPSegTests', e2sar_seg_test, suite: 'unit')
test('DPReasTestes', e2sar_reas_test, suite: 'unit')
# these tests require a live instance of control plane
test('LBCPLiveTests', e2sar_lbcp_live_test, suite: 'live')
test('DPSyncLiveTests', e2sar_sync_live_test, suite: 'live')
test('DPSegLiveTests', e2sar_seg_live_test, suite: 'live')
test('DPReasLiveTests', e2sar_reas_live_test, suite: 'live')