summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Suarez <kyle.suarez@mongodb.com>2016-07-15 09:53:22 -0400
committerKyle Suarez <kyle.suarez@mongodb.com>2016-07-15 09:53:41 -0400
commitdfa8722ccf5d612884e408d87002ad965fb1e728 (patch)
treeef113fff240cce29dfbdd060a83d7096b5241d9d
parent3c1de5d668f3ebef750c6a4745d311d1b65bcbbc (diff)
downloadmongo-dfa8722ccf5d612884e408d87002ad965fb1e728.tar.gz
Don't run update_serializaility2.js on MMAPv1
-rw-r--r--jstests/parallel/update_serializability2.js42
1 files changed, 26 insertions, 16 deletions
diff --git a/jstests/parallel/update_serializability2.js b/jstests/parallel/update_serializability2.js
index 76045644f22..c2672491177 100644
--- a/jstests/parallel/update_serializability2.js
+++ b/jstests/parallel/update_serializability2.js
@@ -1,23 +1,33 @@
+function test() {
+ "use strict";
+ var t = db.update_serializability1;
+ t.drop();
-t = db.update_serializability1;
-t.drop();
+ var N = 100000;
-N = 100000;
+ var bulk = t.initializeUnorderedBulkOp();
+ for (var i = 0; i < N; i++) {
+ bulk.insert({_id: i, a: i, b: N - i, x: 1, y: 1});
+ }
+ bulk.execute();
-bulk = t.initializeUnorderedBulkOp()
-for ( var i = 0; i < N; i++ ) {
- bulk.insert( { _id : i, a : i, b: N-i, x : 1, y : 1 } );
-}
-bulk.execute();
+ t.ensureIndex({a: 1});
+ t.ensureIndex({b: 1});
-t.ensureIndex( { a : 1 } );
-t.ensureIndex( { b : 1 } );
+ var s1 = startParallelShell(
+ "db.update_serializability1.update( { a : { $gte : 0 } }, { $set : { x : 2 } }, false, true );");
+ var s2 = startParallelShell("db.update_serializability1.update( { b : { $lte : " + N +
+ " } }, { $set : { y : 2 } }, false, true );");
-s1 = startParallelShell( "db.update_serializability1.update( { a : { $gte : 0 } }, { $set : { x : 2 } }, false, true );" );
-s2 = startParallelShell( "db.update_serializability1.update( { b : { $lte : " + N + " } }, { $set : { y : 2 } }, false, true );" );
+ s1();
+ s2();
-s1();
-s2();
+ // both operations should happen on every document
+ assert.eq(N, t.find({x: 2, y: 2}).count());
+}
-// both operations should happen on every document
-assert.eq( N, t.find( { x : 2, y : 2 } ).count() );
+if (db.serverStatus().storageEngine.name == 'mmapv1') {
+ jsTest.log('skipping test on mmapv1'); // This is only guaranteed on other engines.
+} else {
+ test();
+}