summaryrefslogtreecommitdiff
path: root/src/mongo/shell/SConscript
diff options
context:
space:
mode:
authorJonathan Reams <jbreams@mongodb.com>2018-08-17 16:12:30 -0400
committerJonathan Reams <jbreams@mongodb.com>2018-08-21 14:34:16 -0400
commit3a37add7837885d0fe31eb44480769969a330f77 (patch)
tree0a692d317f055bb83d645288a8bec747dadbf7d8 /src/mongo/shell/SConscript
parent8bc7ae4a94777acce2b4fc225cca5becee763a4b (diff)
downloadmongo-3a37add7837885d0fe31eb44480769969a330f77.tar.gz
SERVER-36744 Fix and add tests for command-line redaction
Diffstat (limited to 'src/mongo/shell/SConscript')
-rw-r--r--src/mongo/shell/SConscript10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mongo/shell/SConscript b/src/mongo/shell/SConscript
index 7bdc2b580a2..d5bcb268c8c 100644
--- a/src/mongo/shell/SConscript
+++ b/src/mongo/shell/SConscript
@@ -76,3 +76,13 @@ env.Library(
"$BUILD_DIR/mongo/base",
],
)
+
+env.CppUnitTest(
+ target='shell_options_test',
+ source=[
+ "shell_options_test.cpp",
+ ],
+ LIBDEPS=[
+ "$BUILD_DIR/mongo/shell_core",
+ ],
+)