summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/commands/SConscript')
-rw-r--r--src/mongo/db/commands/SConscript18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/mongo/db/commands/SConscript b/src/mongo/db/commands/SConscript
index 5e12faebf7b..acf5ea2e5fc 100644
--- a/src/mongo/db/commands/SConscript
+++ b/src/mongo/db/commands/SConscript
@@ -324,6 +324,7 @@ env.Library(
"$BUILD_DIR/mongo/db/storage/two_phase_index_build_knobs_idl",
'$BUILD_DIR/mongo/db/transaction',
'$BUILD_DIR/mongo/db/views/views_mongod',
+ '$BUILD_DIR/mongo/executor/async_request_executor',
'$BUILD_DIR/mongo/util/log_and_backoff',
'$BUILD_DIR/mongo/util/net/http_client',
'core',
@@ -630,6 +631,23 @@ env.CppUnitTest(
)
env.CppUnitTest(
+ target="async_command_execution_test",
+ source=[
+ "async_command_execution_test.cpp",
+ ],
+ LIBDEPS=[
+ "$BUILD_DIR/mongo/base",
+ "$BUILD_DIR/mongo/db/auth/authmocks",
+ "$BUILD_DIR/mongo/db/auth/authorization_manager_global",
+ "$BUILD_DIR/mongo/db/commands",
+ "$BUILD_DIR/mongo/db/commands/standalone",
+ "$BUILD_DIR/mongo/db/service_context_test_fixture",
+ "$BUILD_DIR/mongo/unittest/unittest",
+ "$BUILD_DIR/mongo/util/version_impl",
+ ],
+)
+
+env.CppUnitTest(
target="db_commands_test",
source=[
"index_filter_commands_test.cpp",