summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorRandolph Tan <randolph@10gen.com>2014-03-03 11:27:18 -0500
committerRandolph Tan <randolph@10gen.com>2014-03-14 12:06:02 -0400
commit8c92b5ae5891b171bbdffee0b62d2135eb89bba9 (patch)
tree3767ae10c66549527ffc9f03db69d15cc40cfaf3 /buildscripts
parent3b7aae27fef10e3359ea6164164e827ff5407c61 (diff)
downloadmongo-8c92b5ae5891b171bbdffee0b62d2135eb89bba9.tar.gz
SERVER-13190 migrate replset jstest suite to use write commands api
Diffstat (limited to 'buildscripts')
-rwxr-xr-xbuildscripts/smoke.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/smoke.py b/buildscripts/smoke.py
index 30ac3aa4004..263f7bad7d2 100755
--- a/buildscripts/smoke.py
+++ b/buildscripts/smoke.py
@@ -469,7 +469,7 @@ def runTest(test, result):
path = argv[1]
elif ext == ".js":
argv = [shell_executable, "--port", mongod_port, '--authenticationMechanism', authMechanism]
- if use_write_commands or "aggregation" in path:
+ if use_write_commands or "aggregation" in path or "replsets" in path:
argv += ["--writeMode", "commands"]
else:
argv += ["--writeMode", shell_write_mode]