summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2010-01-19 16:43:12 -0500
committerEliot Horowitz <eliot@10gen.com>2010-01-19 16:43:12 -0500
commitb0b6a102ceb0e3cde0b7a9b35142411e5fbf956c (patch)
treee594d16db7c5eb6f733f3c16e93711e833d48fae
parente3fef5ee1e30660d22966c7b9fc6e6f8fd35474f (diff)
parent3f4d6f7bf5f509c471883955227377ce2c6aa5d0 (diff)
downloadmongo-b0b6a102ceb0e3cde0b7a9b35142411e5fbf956c.tar.gz
Merge branch 'master' of git@github.com:mongodb/mongo
-rw-r--r--SConstruct3
1 files changed, 3 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 1c16b66d159..652f45df063 100644
--- a/SConstruct
+++ b/SConstruct
@@ -1168,6 +1168,8 @@ def runShellTest( env, target, source ):
elif target == "smokeJsPerf":
g = Glob( jsSpec( [ "perf" ] ) )
spec = [ x.abspath for x in g ]
+ elif target == "smokeJsSlow":
+ spec = [x.abspath for x in Glob(jsSpec(["slow/*"]))]
else:
print( "invalid target for runShellTest()" )
Exit( 1 )
@@ -1181,6 +1183,7 @@ if not onlyServer and not noshell:
addSmoketest( "smokeDisk", [ add_exe( "mongo" ), add_exe( "mongod" ) ], [ jsDirTestSpec( "disk" ) ] )
addSmoketest( "smokeSharding", [ "mongo", "mongod", "mongos" ], [ jsDirTestSpec( "sharding" ) ] )
addSmoketest( "smokeJsPerf", [ "mongo" ], runShellTest )
+ addSmoketest("smokeJsSlow", [add_exe("mongo")], runShellTest)
addSmoketest( "smokeQuota", [ "mongo" ], runShellTest )
addSmoketest( "smokeTool", [ add_exe( "mongo" ) ], [ jsDirTestSpec( "tool" ) ] )