0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

Remove just-added smokeShardingJs target; move sharded jstests to slowNightly.

This commit is contained in:
Richard Kreuter 2010-07-22 13:23:06 -04:00
parent f6229557e8
commit b0d3fa02f3
3 changed files with 0 additions and 3 deletions

View File

@ -1286,7 +1286,6 @@ if not onlyServer and not noshell:
addSmoketest( "smokeAuth", [ add_exe( "mongo" ), add_exe( "mongod" ) ] )
addSmoketest( "smokeParallel", [ add_exe( "mongo" ), add_exe( "mongod" ) ] )
addSmoketest( "smokeSharding", [ "mongo", "mongod", "mongos" ] )
addSmoketest( "smokeShardingJs", [ "mongo", "mongod", "mongos" ] )
addSmoketest( "smokeJsPerf", [ "mongo" ] )
addSmoketest("smokeJsSlowNightly", [add_exe("mongo")])
addSmoketest("smokeJsSlowWeekly", [add_exe("mongo")])

View File

@ -384,8 +384,6 @@ def expandSuites(suites):
(globstr, usedb) = ('auth/*.js', False)
elif suite == 'smokeSharding':
(globstr, usedb) = ('sharding/*.js', False)
elif suite == 'smokeShardingJs':
(globstr, usedb) = ('_runner_sharding_passthrough.js', True)
elif suite == 'smokeTool':
(globstr, usedb) = ('tool/*.js', False)
# well, the above almost works for everything...