summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--jstests/core/comment_field.js2
-rw-r--r--jstests/core/dbstats.js2
-rw-r--r--jstests/core/distinct_array1.js2
-rw-r--r--jstests/core/find_and_modify.js2
-rw-r--r--jstests/core/find_and_modify_hint.js3
-rw-r--r--jstests/core/idhack.js2
-rw-r--r--jstests/core/index_bounds_minkey.js2
-rw-r--r--jstests/core/notablescan_capped.js1
-rw-r--r--jstests/core/wildcard_index_validindex.js1
9 files changed, 11 insertions, 6 deletions
diff --git a/jstests/core/comment_field.js b/jstests/core/comment_field.js
index 8ca3fddb325..755ac35fbd9 100644
--- a/jstests/core/comment_field.js
+++ b/jstests/core/comment_field.js
@@ -3,7 +3,7 @@
* and profiler.
* @tags: [assumes_against_mongod_not_mongos, assumes_unsharded_collection,
* does_not_support_stepdowns, requires_profiling, assumes_read_concern_unchanged,
- * assumes_write_concern_unchanged]
+ * assumes_write_concern_unchanged, requires_fcv_44]
*/
(function() {
diff --git a/jstests/core/dbstats.js b/jstests/core/dbstats.js
index ea424295ebf..c1ceb33b707 100644
--- a/jstests/core/dbstats.js
+++ b/jstests/core/dbstats.js
@@ -1,6 +1,6 @@
// Confirms that the dbStats command returns expected content.
//
-// @tags: [requires_dbstats]
+// @tags: [requires_dbstats, requires_fcv_44]
(function() {
"use strict";
diff --git a/jstests/core/distinct_array1.js b/jstests/core/distinct_array1.js
index 2d3a96a6af6..dc85ccafe8c 100644
--- a/jstests/core/distinct_array1.js
+++ b/jstests/core/distinct_array1.js
@@ -1,3 +1,5 @@
+// @tags: [requires_fcv_44]
+
t = db.distinct_array1;
t.drop();
diff --git a/jstests/core/find_and_modify.js b/jstests/core/find_and_modify.js
index 8f437726c51..daab98dc7a8 100644
--- a/jstests/core/find_and_modify.js
+++ b/jstests/core/find_and_modify.js
@@ -1,7 +1,7 @@
// Cannot implicitly shard accessed collections because of following errmsg: A single
// update/delete on a sharded collection must contain an exact match on _id or contain the shard
// key.
-// @tags: [assumes_unsharded_collection, requires_fastcount]
+// @tags: [assumes_unsharded_collection, requires_fastcount, requires_fcv_44]
t = db.find_and_modify;
t.drop();
diff --git a/jstests/core/find_and_modify_hint.js b/jstests/core/find_and_modify_hint.js
index dbf1357db23..e6becb3e048 100644
--- a/jstests/core/find_and_modify_hint.js
+++ b/jstests/core/find_and_modify_hint.js
@@ -3,7 +3,8 @@
* - A bad argument to the hint option should raise an error.
* - The hint option should support both the name of the index, and an index spec object.
*
- * @tags: [assumes_unsharded_collection, requires_non_retryable_writes, requires_find_command]
+ * @tags: [assumes_unsharded_collection, requires_non_retryable_writes, requires_find_command,
+ * requires_fcv_44]
*/
(function() {
diff --git a/jstests/core/idhack.js b/jstests/core/idhack.js
index a9e1cc68aa9..0d4a1528f2a 100644
--- a/jstests/core/idhack.js
+++ b/jstests/core/idhack.js
@@ -1,4 +1,4 @@
-// @tags: [requires_non_retryable_writes, assumes_balancer_off]
+// @tags: [requires_non_retryable_writes, assumes_balancer_off, requires_fcv_44]
(function() {
"use strict";
diff --git a/jstests/core/index_bounds_minkey.js b/jstests/core/index_bounds_minkey.js
index 5d2ea8b36fd..5dd6e19e2cb 100644
--- a/jstests/core/index_bounds_minkey.js
+++ b/jstests/core/index_bounds_minkey.js
@@ -1,5 +1,5 @@
// Index bounds generation tests for MinKey values.
-// @tags: [requires_non_retryable_writes, assumes_unsharded_collection]
+// @tags: [requires_non_retryable_writes, assumes_unsharded_collection, requires_fcv_44]
(function() {
"use strict";
diff --git a/jstests/core/notablescan_capped.js b/jstests/core/notablescan_capped.js
index c4b8fb3474e..35646326a4a 100644
--- a/jstests/core/notablescan_capped.js
+++ b/jstests/core/notablescan_capped.js
@@ -9,6 +9,7 @@
// assumes_superuser_permissions,
// does_not_support_stepdowns,
// requires_capped,
+// requires_fcv_44,
// ]
t = db.test_notablescan_capped;
diff --git a/jstests/core/wildcard_index_validindex.js b/jstests/core/wildcard_index_validindex.js
index 224ce19fe11..6190b030965 100644
--- a/jstests/core/wildcard_index_validindex.js
+++ b/jstests/core/wildcard_index_validindex.js
@@ -3,6 +3,7 @@
* @tags: [
* # Uses index building in background
* requires_background_index,
+ * requires_fcv_44
* ]
*/
(function() {