0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 17:10:48 +01:00

Disable dbhash checking in smoke.py for now.

This commit is contained in:
Richard Kreuter 2010-06-11 19:28:03 -04:00
parent 753a74d271
commit 0437cef453

View File

@ -253,8 +253,8 @@ def runTests(tests):
with mongod(slave=True) if oneMongodPerTest and smallOplog else nothing() as slave2:
runTest(test)
winners.append(test)
if isinstance(slave2, mongod):
checkDbHashes(master2, slave2)
# if isinstance(slave2, mongod):
# checkDbHashes(master2, slave2)
except TestFailure, f:
try:
print f
@ -267,8 +267,8 @@ def runTests(tests):
except TestFailure, f:
if not continueOnFailure:
return 1
if isinstance(slave1, mongod):
checkDbHashes(master1, slave1)
# if isinstance(slave1, mongod):
# checkDbHashes(master1, slave1)
return 0