summaryrefslogtreecommitdiff
path: root/jstests
diff options
context:
space:
mode:
authorHenrik Edin <henrik.edin@mongodb.com>2019-04-10 11:41:34 -0400
committerHenrik Edin <henrik.edin@mongodb.com>2019-04-12 10:09:58 -0400
commit577efe962a1cfe9da721d4a57d4405492f6bbf61 (patch)
tree6485e9a5a02ccb571de7f5e4c77a8d7b0ee38641 /jstests
parent092e71eab06999437d8df8ab3e023219fc593963 (diff)
downloadmongo-577efe962a1cfe9da721d4a57d4405492f6bbf61.tar.gz
SERVER-40561 Disable tests that build indexes on preexisting data when using the mobile storage engine.
All inserts are currently running in their own separate transaction making it very slow.
Diffstat (limited to 'jstests')
-rw-r--r--jstests/concurrency/fsm_workloads/reindex.js2
-rw-r--r--jstests/concurrency/fsm_workloads/reindex_background.js2
-rw-r--r--jstests/noPassthrough/indexbg1.js1
-rw-r--r--jstests/noPassthrough/indexbg2.js2
-rw-r--r--jstests/noPassthroughWithMongod/geo_polygon.js4
5 files changed, 9 insertions, 2 deletions
diff --git a/jstests/concurrency/fsm_workloads/reindex.js b/jstests/concurrency/fsm_workloads/reindex.js
index 8ca7f8223ae..f46a57d5243 100644
--- a/jstests/concurrency/fsm_workloads/reindex.js
+++ b/jstests/concurrency/fsm_workloads/reindex.js
@@ -5,6 +5,8 @@
*
* Bulk inserts 1000 documents and builds indexes. Then alternates between reindexing and querying
* against the collection. Operates on a separate collection for each thread.
+ *
+ * @tags: [SERVER-40561]
*/
var $config = (function() {
diff --git a/jstests/concurrency/fsm_workloads/reindex_background.js b/jstests/concurrency/fsm_workloads/reindex_background.js
index 9e781f4a4ef..d28bee4a8f2 100644
--- a/jstests/concurrency/fsm_workloads/reindex_background.js
+++ b/jstests/concurrency/fsm_workloads/reindex_background.js
@@ -8,7 +8,7 @@
* that because indexes are initially built in the background, reindexing is also done in the
* background.
*
- * @tags: [creates_background_indexes]
+ * @tags: [SERVER-40561, creates_background_indexes]
*/
load('jstests/concurrency/fsm_libs/extend_workload.js'); // for extendWorkload
diff --git a/jstests/noPassthrough/indexbg1.js b/jstests/noPassthrough/indexbg1.js
index 2248d86392a..7b280ed9d07 100644
--- a/jstests/noPassthrough/indexbg1.js
+++ b/jstests/noPassthrough/indexbg1.js
@@ -1,4 +1,5 @@
// Test background index creation
+// @tags: [SERVER-40561]
(function() {
"use strict";
diff --git a/jstests/noPassthrough/indexbg2.js b/jstests/noPassthrough/indexbg2.js
index 086ca385437..a037dc97dd3 100644
--- a/jstests/noPassthrough/indexbg2.js
+++ b/jstests/noPassthrough/indexbg2.js
@@ -1,5 +1,5 @@
// Test background index creation w/ constraints
-// @tags: [requires_document_locking]
+// @tags: [SERVER-40561, requires_document_locking]
(function() {
"use strict";
diff --git a/jstests/noPassthroughWithMongod/geo_polygon.js b/jstests/noPassthroughWithMongod/geo_polygon.js
index d2b271c32d7..7c23442d4de 100644
--- a/jstests/noPassthroughWithMongod/geo_polygon.js
+++ b/jstests/noPassthroughWithMongod/geo_polygon.js
@@ -1,3 +1,7 @@
+//
+// @tags: [SERVER-40561]
+//
+
t = db.geo_polygon4;
t.drop();