mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
cleaning test
This commit is contained in:
parent
4fae261c87
commit
5bf4a6be16
@ -24,29 +24,17 @@ else {
|
||||
|
||||
stopMongoProgramByPid(spawn);
|
||||
|
||||
sleep(200);
|
||||
sleep(100);
|
||||
|
||||
print("count abcdefghijkl:" + db[baseName].find({ i: 'abcdefghijkl' }).count());
|
||||
|
||||
try {
|
||||
assert.soon(
|
||||
function f() {
|
||||
var inprog = db.currentOp().inprog;
|
||||
for (i in inprog) {
|
||||
if (inprog[i].ns == "test." + baseName)
|
||||
print("shellkillop.js op is still running, waiting");
|
||||
//printjson(inprog);
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
},
|
||||
"shellkillop.js FAIL op is still running"
|
||||
);
|
||||
} catch(e) {
|
||||
print("shellkillop.js FAIL op is still running. currentOp():");
|
||||
printjson(db.currentOp().inprog);
|
||||
throw "cancelled op is still running";
|
||||
throw "shellkillop.js op is still running: " + tojson( inprog[i] );
|
||||
}
|
||||
|
||||
assert(db[baseName].find({ i: 'abcdefghijkl' }).count() < 100000, "update ran too fast, test was not valid");
|
||||
|
||||
print("shellkillop.js SUCCESS");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user