summaryrefslogtreecommitdiff
path: root/jstests/core/count10.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/count10.js')
-rw-r--r--jstests/core/count10.js56
1 files changed, 27 insertions, 29 deletions
diff --git a/jstests/core/count10.js b/jstests/core/count10.js
index 24d61956e4d..2a1853c399a 100644
--- a/jstests/core/count10.js
+++ b/jstests/core/count10.js
@@ -3,40 +3,38 @@
t = db.count10;
t.drop();
-for ( i=0; i<100; i++ ){
- t.save( { x : i } );
+for (i = 0; i < 100; i++) {
+ t.save({x: i});
}
// Start a parallel shell which repeatedly checks for a count
// query using db.currentOp(). As soon as the op is found,
// kill it via db.killOp().
-s = startParallelShell(
- 'assert.soon(function() {' +
- ' current = db.currentOp({"ns": db.count10.getFullName(), ' +
- ' "query.count": db.count10.getName()}); ' +
-
- // Check that we found the count op. If not, return false so
- // that assert.soon will retry.
- ' assert("inprog" in current); ' +
- ' if (current.inprog.length === 0) { ' +
- ' jsTest.log("count10.js: did not find count op, retrying"); ' +
- ' printjson(current); ' +
- ' return false; ' +
- ' } ' +
- ' countOp = current.inprog[0]; ' +
- ' if (!countOp) { ' +
- ' jsTest.log("count10.js: did not find count op, retrying"); ' +
- ' printjson(current); ' +
- ' return false; ' +
- ' } ' +
-
- // Found the count op. Try to kill it.
- ' jsTest.log("count10.js: found count op:"); ' +
- ' printjson(current); ' +
- ' printjson(db.killOp(countOp.opid)); ' +
- ' return true; ' +
- '}, "count10.js: could not find count op after retrying, gave up");'
-);
+s = startParallelShell('assert.soon(function() {' +
+ ' current = db.currentOp({"ns": db.count10.getFullName(), ' +
+ ' "query.count": db.count10.getName()}); ' +
+
+ // Check that we found the count op. If not, return false so
+ // that assert.soon will retry.
+ ' assert("inprog" in current); ' +
+ ' if (current.inprog.length === 0) { ' +
+ ' jsTest.log("count10.js: did not find count op, retrying"); ' +
+ ' printjson(current); ' +
+ ' return false; ' +
+ ' } ' +
+ ' countOp = current.inprog[0]; ' +
+ ' if (!countOp) { ' +
+ ' jsTest.log("count10.js: did not find count op, retrying"); ' +
+ ' printjson(current); ' +
+ ' return false; ' +
+ ' } ' +
+
+ // Found the count op. Try to kill it.
+ ' jsTest.log("count10.js: found count op:"); ' +
+ ' printjson(current); ' +
+ ' printjson(db.killOp(countOp.opid)); ' +
+ ' return true; ' +
+ '}, "count10.js: could not find count op after retrying, gave up");');
function getKilledCount() {
try {