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

SERVER-13297: have 'smoke.py all' use jsCore instead of js

This commit is contained in:
Scott Hernandez 2014-03-27 17:46:03 -04:00
parent 696fba3bc9
commit 0798ac066e

View File

@ -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',