summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests
diff options
context:
space:
mode:
authorMathew Robinson <chasinglogic@gmail.com>2019-08-07 10:50:12 -0400
committerMathew Robinson <chasinglogic@gmail.com>2019-08-07 11:56:38 -0400
commit6978f67e7b4d86cf5cea0970ef7e3f9d8566bb29 (patch)
treecec4f229927bc0647f02a80966be41380a5690ce /src/mongo/dbtests
parent5a385bb97b9af3d2c02996bc25c121198e1d9d54 (diff)
downloadmongo-6978f67e7b4d86cf5cea0970ef7e3f9d8566bb29.tar.gz
SERVER-42408 Add dbtest Alias for Windows
Diffstat (limited to 'src/mongo/dbtests')
-rw-r--r--src/mongo/dbtests/SConscript4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mongo/dbtests/SConscript b/src/mongo/dbtests/SConscript
index c735b9cbf0a..6c2521001a2 100644
--- a/src/mongo/dbtests/SConscript
+++ b/src/mongo/dbtests/SConscript
@@ -176,4 +176,6 @@ if not has_option('noshell') and usemozjs:
)
hygienic = get_option('install-mode') == 'hygienic'
if not hygienic:
- env.Install('#/', dbtest)
+ install_dbtest = env.Install('#/', dbtest)
+ if env.TargetOSIs("windows"):
+ env.Alias("dbtest", install_dbtest)