mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
SERVER-13391 Move slowest tests from noPassthrough* (formerly slow{Weekly,Nightly}) to slow*
slow1 and slow2 are new suites to hold very slow tests. The idea is that we can create slow3, slow4, etc to keep the time to run the longest suite down.
This commit is contained in:
parent
d0a1e84ab2
commit
43d933a286
@ -88,6 +88,8 @@ if shellEnv is not None:
|
||||
addSmoketest( "smokeJsPerf", [ add_exe("mongo"), add_exe("mongod") ] )
|
||||
addSmoketest( "smokeNoPassthroughWithMongod", [add_exe("mongo"), add_exe("mongod"), add_exe("mongos") ])
|
||||
addSmoketest( "smokeNoPassthrough", [add_exe("mongo"), add_exe("mongod"), add_exe("mongos") ])
|
||||
addSmoketest( "smokeSlow1", [add_exe("mongo"), add_exe("mongod"), add_exe("mongos") ])
|
||||
addSmoketest( "smokeSlow2", [add_exe("mongo"), add_exe("mongod"), add_exe("mongos") ])
|
||||
addSmoketest( "smokeQuota", [ add_exe("mongo"), add_exe("mongod") ] )
|
||||
addSmoketest( "smokeTool", [ add_exe( "mongo" ), add_exe("mongod"), add_exe("mongos"), "tools" ] )
|
||||
addSmoketest( "smokeAggregation", [ add_exe( "mongo" ), add_exe( "mongod" ), add_exe( "mongos" ) ] )
|
||||
|
@ -837,6 +837,8 @@ suiteGlobalConfig = {"js": ("core/*.js", True),
|
||||
"sslSpecial": ("sslSpecial/*.js", True),
|
||||
"jsCore": ("core/*.js", True),
|
||||
"gle": ("gle/*.js", True),
|
||||
"slow1": ("slow1/*.js", True),
|
||||
"slow2": ("slow2/*.js", True),
|
||||
}
|
||||
|
||||
def get_module_suites():
|
||||
@ -909,6 +911,8 @@ def expand_suites(suites,expandUseDB=True):
|
||||
'repl',
|
||||
'auth',
|
||||
'sharding',
|
||||
'slow1',
|
||||
'slow2',
|
||||
'tool'],
|
||||
expandUseDB=expandUseDB)
|
||||
if suite == 'test':
|
||||
|
Loading…
Reference in New Issue
Block a user