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

Tweak the report printed at the end of smoke.py SERVER-1051

This commit is contained in:
Richard Kreuter 2010-06-15 11:52:38 -04:00
parent df5a9d8732
commit 5cc5efe633

View File

@ -182,6 +182,7 @@ def checkDbHashes(master, slave):
break
time.sleep(3)
# FIXME: maybe make this run dbhash on all databases?
for mongod in [master, slave]:
argv = [shellExecutable, "--port", str(mongod.port), "--quiet", "--eval", "x=db.runCommand('dbhash'); printjson(x.collections)"]
hashstr = Popen(argv, stdout=PIPE).communicate()[0]
@ -298,7 +299,7 @@ at the end of testing:"""
for db in screwy_in_slave.keys():
print "%s\t %s" % (db, screwy_in_slave[db])
if smallOplog and not (lost_in_master or lost_in_slave or screwy_in_slave):
print "replication ok for %d databases" % (len(replicated_dbs))
print "replication ok for %d collections" % (len(replicated_dbs))
if (exit_bad or losers or lost_in_slave or lost_in_master or screwy_in_slave):
status = 1
else: