summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2014-03-27 16:15:09 -0400
committerMathias Stearn <mathias@10gen.com>2014-03-27 17:47:08 -0400
commitd061fb5f993aff589538c9add71af4765be1b65d (patch)
tree4c0c48f3f31f0493ebbd9a3bb05e6117a44e58ba /buildscripts
parent4201130bb08808b3d1ac6441b97fd2b6820a62a2 (diff)
downloadmongo-d061fb5f993aff589538c9add71af4765be1b65d.tar.gz
SERVER-13391 Rename slowNightly -> noPassthroughWithMongod and slowWeekly -> noPassthrough
This better represents their purpose and the difference between them. (cherry picked from commit d0a1e84ab2fa1b6aa699721b5cb9a4f8d0bf3692)
Diffstat (limited to 'buildscripts')
-rwxr-xr-xbuildscripts/smoke.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/buildscripts/smoke.py b/buildscripts/smoke.py
index 29c76bbb8cc..9d34b6c62de 100755
--- a/buildscripts/smoke.py
+++ b/buildscripts/smoke.py
@@ -820,8 +820,8 @@ suiteGlobalConfig = {"js": ("core/*.js", True),
"quota": ("quota/*.js", True),
"jsPerf": ("perf/*.js", True),
"disk": ("disk/*.js", True),
- "jsSlowNightly": ("slowNightly/*.js", True),
- "jsSlowWeekly": ("slowWeekly/*.js", False),
+ "noPassthroughWithMongod": ("noPassthroughWithMongod/*.js", True),
+ "noPassthrough": ("noPassthrough/*.js", False),
"parallel": ("parallel/*.js", True),
"clone": ("clone/*.js", False),
"repl": ("repl/*.js", False),
@@ -902,8 +902,8 @@ def expand_suites(suites,expandUseDB=True):
'perf',
'js',
'jsPerf',
- 'jsSlowNightly',
- 'jsSlowWeekly',
+ 'noPassthroughWithMongod',
+ 'noPassthrough',
'clone',
'parallel',
'repl',