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
|
# -*- mode: python -*-
Import("env")
env = env.Clone()
env.CppUnitTest(
target="base_test",
source=[
"clonable_ptr_test.cpp",
"counter_test.cpp",
"data_builder_test.cpp",
"data_cursor_test.cpp",
"data_range_cursor_test.cpp",
"data_range_test.cpp",
"data_type_string_data_test.cpp",
"data_type_terminated_test.cpp",
"data_type_validated_test.cpp",
"data_view_test.cpp",
"dependency_graph_test.cpp",
"encoded_value_storage_test.cpp",
"initializer_test.cpp",
"murmurhash3_test.cpp",
"parse_number_test.cpp",
"secure_allocator_test.cpp",
"status_test.cpp",
"status_with_test.cpp",
"string_data_test.cpp",
"system_error_test.cpp",
"uuid_test.cpp",
],
AIB_COMPONENT="platform",
LIBDEPS=[
"secure_allocator",
"system_error",
],
)
env.Benchmark(
target="status_bm",
source=[
"status_bm.cpp",
],
LIBDEPS=[
"$BUILD_DIR/mongo/util/processinfo",
],
)
|