diff options
author | Max Hirschhorn <max.hirschhorn@mongodb.com> | 2018-07-10 01:39:36 -0400 |
---|---|---|
committer | Max Hirschhorn <max.hirschhorn@mongodb.com> | 2018-07-10 01:39:36 -0400 |
commit | a750bf210f70dd6e15cd65a15d50aeb8cd75fa3f (patch) | |
tree | 63b3d3213ce60f08625981f087392e0fd314e957 /src/mongo/embedded/SConscript | |
parent | 4c725a11acf11e41e8200500a03d3cec97a25dbe (diff) | |
download | mongo-a750bf210f70dd6e15cd65a15d50aeb8cd75fa3f.tar.gz |
SERVER-35537 Create mongoebench for running benchRun against mobile.
It take a JSON config file with a "pre" section for any setup logic and
an "ops" section for the operations that the benchRun workers should
execute repeatedly.
Diffstat (limited to 'src/mongo/embedded/SConscript')
-rw-r--r-- | src/mongo/embedded/SConscript | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mongo/embedded/SConscript b/src/mongo/embedded/SConscript index 73dc960d1c3..e90f08d6023 100644 --- a/src/mongo/embedded/SConscript +++ b/src/mongo/embedded/SConscript @@ -59,6 +59,17 @@ env.Library( ) env.Library( + target='embedded_integration_helpers', + source=[ + 'embedded_options_helpers.cpp', + ], + LIBDEPS=[ + '$BUILD_DIR/mongo/base', + '$BUILD_DIR/mongo/util/options_parser/options_parser', + ], +) + +env.Library( target='mongo_embedded_capi', source=[ 'capi.cpp', @@ -119,6 +130,7 @@ mongoed = yamlEnv.Program( '$BUILD_DIR/mongo/transport/transport_layer_manager', '$BUILD_DIR/mongo/util/signal_handlers', 'embedded', + 'embedded_integration_helpers', ], INSTALL_ALIAS=[ 'mobile-test', |