summaryrefslogtreecommitdiff
path: root/src/mongo/client/SConscript
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2019-06-27 14:21:33 -0400
committerAndrew Morrow <acm@mongodb.com>2019-06-28 12:35:23 -0400
commit5253aea55a817b36b30312cc9966536e038d494d (patch)
treecd9724eef08e8cb17d747b2d9b1b08f9e5703450 /src/mongo/client/SConscript
parent7f2630cf028f38d45dd5d9e3415d44f31b3cc030 (diff)
downloadmongo-5253aea55a817b36b30312cc9966536e038d494d.tar.gz
SERVER-41809 Undo collapse of integration tests in mongo/client
Diffstat (limited to 'src/mongo/client/SConscript')
-rw-r--r--src/mongo/client/SConscript18
1 files changed, 16 insertions, 2 deletions
diff --git a/src/mongo/client/SConscript b/src/mongo/client/SConscript
index 262aef128dc..76bfc013a31 100644
--- a/src/mongo/client/SConscript
+++ b/src/mongo/client/SConscript
@@ -295,15 +295,29 @@ env.CppUnitTest(
],
)
+# The following two tests cannot be combined because the second one
+# needs to be filtered out for the repl and sharding variants of the
+# integration tests.
env.CppIntegrationTest(
- target='client_integration_test',
+ target='client_connpool_integration_test',
source=[
'connpool_integration_test.cpp',
- 'dbclient_connection_integration_test.cpp',
],
LIBDEPS=[
+ '$BUILD_DIR/mongo/transport/transport_layer_egress_init',
+ '$BUILD_DIR/mongo/util/version_impl',
'clientdriver_network',
+ ],
+)
+
+env.CppIntegrationTest(
+ target='client_dbclient_connection_integration_test',
+ source=[
+ 'dbclient_connection_integration_test.cpp',
+ ],
+ LIBDEPS=[
'$BUILD_DIR/mongo/transport/transport_layer_egress_init',
'$BUILD_DIR/mongo/util/version_impl',
+ 'clientdriver_network',
],
)