summaryrefslogtreecommitdiff
path: root/src/mongo/platform/SConscript
blob: 171a183fa45a9460e4261a21318431731689281d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- 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',
        'stack_locator_test.cpp',
        'decimal128_test.cpp',
        'decimal128_bson_test.cpp',
        'overflow_arithmetic_test.cpp'
    ],
    LIBDEPS=[
        '$BUILD_DIR/mongo/db/service_context'
    ]
)