summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorEric Milkie <milkie@10gen.com>2014-02-25 11:33:03 -0500
committerEric Milkie <milkie@10gen.com>2014-02-25 11:33:07 -0500
commit9d15c2e8cae042055f9d5814f792ab9b9cecad7c (patch)
treeac10cbe1a88e4c120161a161ab978dcb1d8f1fd4 /buildscripts
parentc46e41983184ec04d6be8c6667945b97163cb7f4 (diff)
downloadmongo-9d15c2e8cae042055f9d5814f792ab9b9cecad7c.tar.gz
omit dbadmin.js from smalloplog suite; calls CloseAllDatabases
Diffstat (limited to 'buildscripts')
-rwxr-xr-xbuildscripts/smoke.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildscripts/smoke.py b/buildscripts/smoke.py
index d80ea6240da..60f55d92028 100755
--- a/buildscripts/smoke.py
+++ b/buildscripts/smoke.py
@@ -201,7 +201,7 @@ class mongod(object):
if self.kwargs.get('small_oplog_rs'):
argv += ["--replSet", "foo", "--oplogSize", "511"]
if self.slave:
- argv += ['--slave', '--autoresync', '--source', 'localhost:' + str(srcport)]
+ argv += ['--slave', '--source', 'localhost:' + str(srcport)]
if self.kwargs.get('no_journal'):
argv += ['--nojournal']
if self.kwargs.get('no_preallocj'):
@@ -380,7 +380,7 @@ def skipTest(path):
parentPath = os.path.dirname(path)
parentDir = os.path.basename(parentPath)
if small_oplog: # For tests running in parallel
- if basename in ["cursor8.js", "indexh.js", "dropdb.js", "connections_opened.js", "opcounters.js"]:
+ if basename in ["cursor8.js", "indexh.js", "dropdb.js", "connections_opened.js", "opcounters.js", "dbadmin.js"]:
return True
if use_ssl:
# Skip tests using mongobridge since it does not support SSL