summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorScott Hernandez <scotthernandez@gmail.com>2014-03-27 17:46:03 -0400
committerScott Hernandez <scotthernandez@gmail.com>2014-03-27 18:35:49 -0400
commit2f3c2123acb314f7542b8666151493d96a378b79 (patch)
tree6dc8f7fb5b8d0ac092341632c5535d5f974854a0 /buildscripts
parente6f210813e1b32f25885e1ea9d96cf1c8f5b05f4 (diff)
downloadmongo-2f3c2123acb314f7542b8666151493d96a378b79.tar.gz
SERVER-13297: have 'smoke.py all' use jsCore instead of js
(cherry picked from commit 0798ac066e89b53b9dea581ed79737904e4cd8f3)
Diffstat (limited to 'buildscripts')
-rwxr-xr-xbuildscripts/smoke.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildscripts/smoke.py b/buildscripts/smoke.py
index 8acc0b33826..23f1acc56d6 100755
--- a/buildscripts/smoke.py
+++ b/buildscripts/smoke.py
@@ -442,9 +442,9 @@ def skipTest(path):
return False
-forceCommandsForSuite = ["aggregation", "replsets", "parallel", "core", "auth"]
+forceCommandsForDirs = ["aggregation", "auth", "core", "parallel", "replsets"]
# look for jstests and one of the above suites separated by either posix or windows slashes
-forceCommandsRE = re.compile(r"jstests[/\\](%s)" % ('|'.join(forceCommandsForSuite)))
+forceCommandsRE = re.compile(r"jstests[/\\](%s)" % ('|'.join(forceCommandsForDirs)))
def setShellWriteModeForTest(path, argv):
swm = shell_write_mode
if swm == "legacy": # change when the default changes to "commands"
@@ -902,7 +902,7 @@ def expand_suites(suites,expandUseDB=True):
if suite == 'all':
return expand_suites(['test',
'perf',
- 'js',
+ 'jsCore',
'jsPerf',
'noPassthroughWithMongod',
'noPassthrough',