diff options
Diffstat (limited to 'src/mongo/db/SConscript')
-rw-r--r-- | src/mongo/db/SConscript | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/mongo/db/SConscript b/src/mongo/db/SConscript index 13152dcc249..8dad1e9d8a5 100644 --- a/src/mongo/db/SConscript +++ b/src/mongo/db/SConscript @@ -554,6 +554,20 @@ env.Library( ], ) +env.CppUnitTest( + target="commands_test", + source=[ + "commands_test.cpp", + ], + LIBDEPS=[ + "commands", + "commands_test_crutch", + "service_context_noop_init", + "auth/authorization_manager_mock_init", + "repl/replmocks", + ], +) + # TODO: This library should probably be folded into catalog/catalog, # with which it is currently circular. env.Library( |