diff options
author | Mathias Stearn <mathias@10gen.com> | 2014-03-27 16:43:39 -0400 |
---|---|---|
committer | Mathias Stearn <mathias@10gen.com> | 2014-03-27 17:35:16 -0400 |
commit | 43d933a286bff0e98845368c84c10248388bc4a5 (patch) | |
tree | 5ccfb8cca98925cf5b9fadd55f3eea0504a209f0 /SConscript.smoke | |
parent | d0a1e84ab2fa1b6aa699721b5cb9a4f8d0bf3692 (diff) | |
download | mongo-43d933a286bff0e98845368c84c10248388bc4a5.tar.gz |
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.
Diffstat (limited to 'SConscript.smoke')
-rw-r--r-- | SConscript.smoke | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/SConscript.smoke b/SConscript.smoke index 0123942baa9..ab233477cf2 100644 --- a/SConscript.smoke +++ b/SConscript.smoke @@ -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" ) ] ) |