diff options
Diffstat (limited to 'src/mongo/s/SConscript')
-rw-r--r-- | src/mongo/s/SConscript | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/mongo/s/SConscript b/src/mongo/s/SConscript index 8b0b8321aaa..4cb691f5153 100644 --- a/src/mongo/s/SConscript +++ b/src/mongo/s/SConscript @@ -249,6 +249,7 @@ env.Library( 'balancer/balancer_policy.cpp', 'balancer/cluster_statistics.cpp', 'balancer/cluster_statistics_impl.cpp', + 'balancer/migration_manager.cpp', 'catalog/catalog_cache.cpp', 'chunk.cpp', 'chunk_manager.cpp', @@ -337,6 +338,18 @@ env.CppUnitTest( ] ) +env.CppUnitTest( + target='migration_manager_test', + source=[ + 'balancer/migration_manager_test.cpp', + ], + LIBDEPS=[ + '$BUILD_DIR/mongo/db/repl/replmocks', + 'config_server_test_fixture', + 'coreshard', + ] +) + env.Library( target='local_sharding_info', source=[ |