summaryrefslogtreecommitdiff
path: root/src/mongo/unittest/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/unittest/SConscript')
-rw-r--r--src/mongo/unittest/SConscript16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mongo/unittest/SConscript b/src/mongo/unittest/SConscript
index b045b3f7429..30b4d352ac6 100644
--- a/src/mongo/unittest/SConscript
+++ b/src/mongo/unittest/SConscript
@@ -26,9 +26,9 @@ utEnv.Library(
'$BUILD_DIR/mongo/db/server_options_core',
'$BUILD_DIR/mongo/util/options_parser/options_parser',
'$BUILD_DIR/third_party/shim_pcrecpp',
- '$BUILD_DIR/third_party/shim_yaml'
+ '$BUILD_DIR/third_party/shim_yaml',
],
- AIB_COMPONENT='unittests'
+ AIB_COMPONENT='unittests',
)
env.Library(
@@ -45,7 +45,7 @@ env.Library(
'$BUILD_DIR/mongo/db/wire_version',
'$BUILD_DIR/mongo/util/options_parser/options_parser',
],
- AIB_COMPONENT='unittests'
+ AIB_COMPONENT='unittests',
)
env.Library(
@@ -70,7 +70,7 @@ env.Library(
'$BUILD_DIR/mongo/util/options_parser/options_parser_init',
'$BUILD_DIR/mongo/util/testing_options',
],
- AIB_COMPONENT='integration-tests'
+ AIB_COMPONENT='integration-tests',
)
bmEnv = env.Clone()
@@ -78,7 +78,7 @@ bmEnv.InjectThirdParty(libraries=['benchmark'])
bmEnv.Library(
target='benchmark_main',
source=[
- 'benchmark_main.cpp'
+ 'benchmark_main.cpp',
],
LIBDEPS=[
# benchmark_main must not be made to depend on additional libraries.
@@ -87,7 +87,7 @@ bmEnv.Library(
'$BUILD_DIR/mongo/base',
'$BUILD_DIR/third_party/shim_benchmark',
],
- AIB_COMPONENT='benchmarks'
+ AIB_COMPONENT='benchmarks',
)
env.Library(
@@ -98,7 +98,7 @@ env.Library(
LIBDEPS=[
'$BUILD_DIR/mongo/executor/task_executor_interface',
],
- AIB_COMPONENT='benchmarks'
+ AIB_COMPONENT='benchmarks',
)
env.CppUnitTest(
@@ -116,7 +116,7 @@ env.CppUnitTest(
env.Benchmark(
target='system_resource_canary_bm',
source=[
- 'system_resource_canary_bm.cpp'
+ 'system_resource_canary_bm.cpp',
],
LIBDEPS=[
'$BUILD_DIR/mongo/util/processinfo',