summaryrefslogtreecommitdiff
path: root/jstests/replsets/apply_ops_concurrent_non_atomic_different_db.js
diff options
context:
space:
mode:
authorBenety Goh <benety@mongodb.com>2017-08-07 17:20:10 -0400
committerBenety Goh <benety@mongodb.com>2017-08-09 15:10:48 -0400
commitb871fce9d308271f95159900c0e41d435f31e5ab (patch)
tree2e6404c6829ae70ce38f0d5c8a6b3acb683c4567 /jstests/replsets/apply_ops_concurrent_non_atomic_different_db.js
parent23bd7f71c3b9d7f29db1955cdb884002fe96b7ee (diff)
downloadmongo-b871fce9d308271f95159900c0e41d435f31e5ab.tar.gz
SERVER-30554 add library for applyOps concurrent tests
Diffstat (limited to 'jstests/replsets/apply_ops_concurrent_non_atomic_different_db.js')
-rw-r--r--jstests/replsets/apply_ops_concurrent_non_atomic_different_db.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/jstests/replsets/apply_ops_concurrent_non_atomic_different_db.js b/jstests/replsets/apply_ops_concurrent_non_atomic_different_db.js
new file mode 100644
index 00000000000..05cb6f9e996
--- /dev/null
+++ b/jstests/replsets/apply_ops_concurrent_non_atomic_different_db.js
@@ -0,0 +1,11 @@
+(function() {
+ 'use strict';
+
+ load('jstests/replsets/libs/apply_ops_concurrent_non_atomic.js');
+
+ new ApplyOpsConcurrentNonAtomicTest({
+ ns1: 'test1.coll1',
+ ns2: 'test2.coll2',
+ requiresDocumentLevelConcurrency: false,
+ }).run();
+}());