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
|
# -*- mode: python -*-
Import("env")
env = env.Clone()
env.CppUnitTest(
target='platform_test',
source=[
'atomic_proxy_test.cpp',
'atomic_word_test.cpp',
'bits_test.cpp',
'endian_test.cpp',
'mutex_test.cpp',
'process_id_test.cpp',
'random_test.cpp',
'source_location_test.cpp',
'stack_locator_test.cpp',
'decimal128_test.cpp',
'decimal128_bson_test.cpp',
'overflow_arithmetic_test.cpp'
],
)
env.Benchmark(
target='endian_bm',
source=[
'endian_bm.cpp',
],
LIBDEPS=[
],
)
|