Skip to content

Commit 9d15c2e

Browse files
committed
omit dbadmin.js from smalloplog suite; calls CloseAllDatabases
1 parent c46e419 commit 9d15c2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

buildscripts/smoke.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def start(self):
201201
if self.kwargs.get('small_oplog_rs'):
202202
argv += ["--replSet", "foo", "--oplogSize", "511"]
203203
if self.slave:
204-
argv += ['--slave', '--autoresync', '--source', 'localhost:' + str(srcport)]
204+
argv += ['--slave', '--source', 'localhost:' + str(srcport)]
205205
if self.kwargs.get('no_journal'):
206206
argv += ['--nojournal']
207207
if self.kwargs.get('no_preallocj'):
@@ -380,7 +380,7 @@ def skipTest(path):
380380
parentPath = os.path.dirname(path)
381381
parentDir = os.path.basename(parentPath)
382382
if small_oplog: # For tests running in parallel
383-
if basename in ["cursor8.js", "indexh.js", "dropdb.js", "connections_opened.js", "opcounters.js"]:
383+
if basename in ["cursor8.js", "indexh.js", "dropdb.js", "connections_opened.js", "opcounters.js", "dbadmin.js"]:
384384
return True
385385
if use_ssl:
386386
# Skip tests using mongobridge since it does not support SSL

0 commit comments

Comments
 (0)