diff options
author | Scott Hernandez <scotthernandez@gmail.com> | 2014-03-27 17:46:03 -0400 |
---|---|---|
committer | Scott Hernandez <scotthernandez@gmail.com> | 2014-03-27 18:34:41 -0400 |
commit | 0798ac066e89b53b9dea581ed79737904e4cd8f3 (patch) | |
tree | 2b8c0d6db90f45af43fcbc58da419626e52c6f6e /buildscripts | |
parent | 696fba3bc9607ec5885d072d68c609895b7f5831 (diff) | |
download | mongo-0798ac066e89b53b9dea581ed79737904e4cd8f3.tar.gz |
SERVER-13297: have 'smoke.py all' use jsCore instead of js
Diffstat (limited to 'buildscripts')
-rwxr-xr-x | buildscripts/smoke.py | 6 |
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', |