summaryrefslogtreecommitdiff
path: root/jstests/mmap_v1/disk_reuse1.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/mmap_v1/disk_reuse1.js')
-rw-r--r--jstests/mmap_v1/disk_reuse1.js30
1 files changed, 15 insertions, 15 deletions
diff --git a/jstests/mmap_v1/disk_reuse1.js b/jstests/mmap_v1/disk_reuse1.js
index c419792b5d9..01090667820 100644
--- a/jstests/mmap_v1/disk_reuse1.js
+++ b/jstests/mmap_v1/disk_reuse1.js
@@ -1,24 +1,24 @@
-load( "jstests/libs/slow_weekly_util.js" );
-test = new SlowWeeklyMongod( "conc_update" );
-db = test.getDB( "test" );
+load("jstests/libs/slow_weekly_util.js");
+test = new SlowWeeklyMongod("conc_update");
+db = test.getDB("test");
t = db.disk_reuse1;
t.drop();
N = 10000;
-function k(){
- return Math.floor( Math.random() * N );
+function k() {
+ return Math.floor(Math.random() * N);
}
s = "";
-while ( s.length < 1024 )
+while (s.length < 1024)
s += "abc";
state = {};
var bulk = t.initializeUnorderedBulkOp();
for (var i = 0; i < N; i++) {
- bulk.insert({ _id: i, s: s });
+ bulk.insert({_id: i, s: s});
}
assert.writeOK(bulk.execute());
@@ -28,24 +28,24 @@ t.remove({});
bulk = t.initializeUnorderedBulkOp();
for (i = 0; i < N; i++) {
- bulk.insert({ _id: i, s: s });
+ bulk.insert({_id: i, s: s});
}
assert.writeOK(bulk.execute());
-assert.eq( orig.storageSize , t.stats().storageSize , "A" );
+assert.eq(orig.storageSize, t.stats().storageSize, "A");
-for (j = 0; j < 100; j++){
- for (i = 0; i < N; i++){
+for (j = 0; j < 100; j++) {
+ for (i = 0; i < N; i++) {
bulk = t.initializeUnorderedBulkOp();
var r = Math.random();
- if ( r > .5 )
- bulk.find({ _id: i }).remove();
+ if (r > .5)
+ bulk.find({_id: i}).remove();
else
- bulk.find({ _id: i }).upsert().updateOne({ _id: i, s: s });
+ bulk.find({_id: i}).upsert().updateOne({_id: i, s: s});
}
assert.writeOK(bulk.execute());
- assert.eq( orig.storageSize , t.stats().storageSize , "B" + j );
+ assert.eq(orig.storageSize, t.stats().storageSize, "B" + j);
}
test.stop();