summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorMike Dirolf <mike@10gen.com>2009-08-07 17:03:28 -0400
committerMike Dirolf <mike@10gen.com>2009-08-07 17:03:28 -0400
commita6e8d4cb01484a88061daf51528554c04f246ac2 (patch)
tree531a5aa62f197944f195fb2fb990d732b3735179 /SConstruct
parent04d1d87a5fc5b357c336faa3b6eb8b0aa29b263a (diff)
parent38bcbc9cae01530b4a93065e4aa968ff2a7609b6 (diff)
downloadmongo-a6e8d4cb01484a88061daf51528554c04f246ac2.tar.gz
Merge branch 'master' of git://github.com/mongodb/mongo
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct7
1 files changed, 7 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index e12c145d062..8e53fa91bab 100644
--- a/SConstruct
+++ b/SConstruct
@@ -1345,3 +1345,10 @@ def clean_old_dist_builds(env, target, source):
env.Alias("dist_clean", [], [clean_old_dist_builds])
env.AlwaysBuild("dist_clean")
+from buildscripts import test_shell
+def run_shell_tests(env, target, source):
+ test_shell.mongo_path = windows and "mongo.exe" or "mongo"
+ test_shell.run_tests()
+
+env.Alias("test_shell", [], [run_shell_tests])
+env.AlwaysBuild("test_shell")