blob: 2a6c8a4f0bc3b315ec53ca2039e330aca06dda27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# -*- mode: python -*-
Import("env")
env = env.Clone()
env.CppUnitTest(
target='platform_test',
source=[
'atomic_proxy_test.cpp',
'atomic_word_test.cpp',
'bits_test.cpp',
'condition_variable_test.cpp',
'endian_test.cpp',
'mutex_test.cpp',
'process_id_test.cpp',
'random_test.cpp',
'stack_locator_test.cpp',
'decimal128_test.cpp',
'decimal128_bson_test.cpp',
'overflow_arithmetic_test.cpp'
],
)
|