summaryrefslogtreecommitdiff
path: root/src/mongo/platform
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/platform')
-rw-r--r--src/mongo/platform/SConscript25
1 files changed, 15 insertions, 10 deletions
diff --git a/src/mongo/platform/SConscript b/src/mongo/platform/SConscript
index a1b1e9ae134..e6ec2c4d004 100644
--- a/src/mongo/platform/SConscript
+++ b/src/mongo/platform/SConscript
@@ -4,13 +4,18 @@ Import("env")
env = env.Clone()
-env.CppUnitTest('atomic_proxy_test', 'atomic_proxy_test.cpp')
-env.CppUnitTest('atomic_word_test', 'atomic_word_test.cpp')
-env.CppUnitTest('bits_test', 'bits_test.cpp')
-env.CppUnitTest('endian_test', 'endian_test.cpp')
-env.CppUnitTest('process_id_test', 'process_id_test.cpp')
-env.CppUnitTest('random_test', 'random_test.cpp')
-env.CppUnitTest('stack_locator_test', 'stack_locator_test.cpp')
-env.CppUnitTest('decimal128_test', 'decimal128_test.cpp')
-env.CppUnitTest('decimal128_bson_test', 'decimal128_bson_test.cpp')
-env.CppUnitTest('overflow_arithmetic_test', 'overflow_arithmetic_test.cpp')
+env.CppUnitTest(
+ target='platform_test',
+ source=[
+ 'atomic_proxy_test.cpp',
+ 'atomic_word_test.cpp',
+ 'bits_test.cpp',
+ 'endian_test.cpp',
+ 'process_id_test.cpp',
+ 'random_test.cpp',
+ 'stack_locator_test.cpp',
+ 'decimal128_test.cpp',
+ 'decimal128_bson_test.cpp',
+ 'overflow_arithmetic_test.cpp'
+ ],
+)