summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorRandolph Tan <randolph@10gen.com>2014-03-11 14:38:27 -0400
committerRandolph Tan <randolph@10gen.com>2014-03-13 17:01:06 -0400
commit5bd9fa125cf91df4d9ec00eeb5e92cbcbf5db58e (patch)
tree64ca4b0a0e6a567cc4ac9cc9c89a798ca7a86c87 /buildscripts
parenta53a7eec0594f065923a495a695cb5dde6679468 (diff)
downloadmongo-5bd9fa125cf91df4d9ec00eeb5e92cbcbf5db58e.tar.gz
SERVER-13188 Migrate aggregation 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 841382d8bac..30ac3aa4004 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:
+ if use_write_commands or "aggregation" in path:
argv += ["--writeMode", "commands"]
else:
argv += ["--writeMode", shell_write_mode]