summaryrefslogtreecommitdiff
path: root/src/mongo/platform
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2019-06-19 11:36:50 -0400
committerAndrew Morrow <acm@mongodb.com>2019-06-20 14:31:23 -0400
commite3f4aa4cf938be00e33874408185767ad256a769 (patch)
treea6490e5fcd6912d46514b2657a1dc46a352fd943 /src/mongo/platform
parent065a8926202af35bd19a9e2974aaa18f341604fa (diff)
downloadmongo-e3f4aa4cf938be00e33874408185767ad256a769.tar.gz
SERVER-41809 Collapse unit tests on a per-directory basis
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'
+ ],
+)