summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--etc/backports_required_for_multiversion_tests.yml18
-rw-r--r--jstests/core/ismaster.js1
-rw-r--r--jstests/core/views/views_all_commands.js1
-rw-r--r--jstests/replsets/get_replication_info_helper.js1
-rw-r--r--jstests/sharding/database_versioning_all_commands.js1
-rw-r--r--jstests/sharding/ismaster.js1
-rw-r--r--jstests/sharding/read_write_concern_defaults_application.js3
-rw-r--r--jstests/sharding/safe_secondary_reads_drop_recreate.js1
-rw-r--r--jstests/sharding/safe_secondary_reads_single_migration_suspend_range_deletion.js1
-rw-r--r--jstests/sharding/safe_secondary_reads_single_migration_waitForDelete.js1
10 files changed, 19 insertions, 10 deletions
diff --git a/etc/backports_required_for_multiversion_tests.yml b/etc/backports_required_for_multiversion_tests.yml
index 546fdc0c4c4..0705eb605c1 100644
--- a/etc/backports_required_for_multiversion_tests.yml
+++ b/etc/backports_required_for_multiversion_tests.yml
@@ -40,6 +40,24 @@ all:
test_file: jstests/change_streams/report_post_batch_resume_token.js
- ticket: SERVER-50140
test_file: jstests/replsets/initial_sync_fails_unclean_restart.js
+ - ticket: SERVER-49986
+ test_file: jstests/core/ismaster.js
+ - ticket: SERVER-49986
+ test_file: jstests/core/views/views_all_commands.js
+ - ticket: SERVER-49986
+ test_file: jstests/sharding/database_versioning_all_commands.js
+ - ticket: SERVER-49986
+ test_file: jstests/sharding/ismaster.js
+ - ticket: SERVER-49986
+ test_file: jstests/sharding/read_write_concern_defaults_application.js
+ - ticket: SERVER-49986
+ test_file: jstests/sharding/safe_secondary_reads_drop_recreate.js
+ - ticket: SERVER-49986
+ test_file: jstests/sharding/safe_secondary_reads_single_migration_suspend_range_deletion.js
+ - ticket: SERVER-49986
+ test_file: jstests/sharding/safe_secondary_reads_single_migration_waitForDelete.js
+ - ticket: SERVER-49991
+ test_file: jstests/replsets/get_replication_info_helper.js
# Tests that should only be excluded from particular suites should be listed under that suite.
suites:
diff --git a/jstests/core/ismaster.js b/jstests/core/ismaster.js
index 943fc0851b0..5f309b83392 100644
--- a/jstests/core/ismaster.js
+++ b/jstests/core/ismaster.js
@@ -1,7 +1,6 @@
/**
* This test ensures that the hello command and its aliases, ismaster and isMaster, are all
* accepted.
- * @tags: [requires_fcv_47]
*/
"use strict";
diff --git a/jstests/core/views/views_all_commands.js b/jstests/core/views/views_all_commands.js
index 57a702c709a..325a8e0e7fd 100644
--- a/jstests/core/views/views_all_commands.js
+++ b/jstests/core/views/views_all_commands.js
@@ -3,7 +3,6 @@
// does_not_support_stepdowns,
// requires_emptycapped,
// requires_fastcount,
-// requires_fcv_47,
// requires_getmore,
// requires_non_retryable_commands,
// requires_non_retryable_writes,
diff --git a/jstests/replsets/get_replication_info_helper.js b/jstests/replsets/get_replication_info_helper.js
index 137f4ff84cb..39355e2ceda 100644
--- a/jstests/replsets/get_replication_info_helper.js
+++ b/jstests/replsets/get_replication_info_helper.js
@@ -1,6 +1,5 @@
// Tests the output of db.getReplicationInfo(), db.printSlaveReplicationInfo(), and the latter's
// alias, db.printSecondaryReplicationInfo().
-// @tags: [requires_fcv_47]
(function() {
"use strict";
diff --git a/jstests/sharding/database_versioning_all_commands.js b/jstests/sharding/database_versioning_all_commands.js
index 804da523ba1..26187904826 100644
--- a/jstests/sharding/database_versioning_all_commands.js
+++ b/jstests/sharding/database_versioning_all_commands.js
@@ -1,7 +1,6 @@
/**
* Specifies for each command whether it is expected to send a databaseVersion, and verifies that
* the commands match the specification.
- * @tags: [requires_fcv_47]
*/
(function() {
'use strict';
diff --git a/jstests/sharding/ismaster.js b/jstests/sharding/ismaster.js
index 5cbbb8597f8..185294200ac 100644
--- a/jstests/sharding/ismaster.js
+++ b/jstests/sharding/ismaster.js
@@ -1,7 +1,6 @@
/**
* This test ensures that the hello command and its aliases, ismaster and isMaster, are all
* accepted by mongos.
- * @tags: [requires_fcv_47]
*/
"use strict";
var st = new ShardingTest({shards: 1, mongos: 1});
diff --git a/jstests/sharding/read_write_concern_defaults_application.js b/jstests/sharding/read_write_concern_defaults_application.js
index 44840eb0370..64e1693d614 100644
--- a/jstests/sharding/read_write_concern_defaults_application.js
+++ b/jstests/sharding/read_write_concern_defaults_application.js
@@ -25,8 +25,7 @@
* does_not_support_stepdowns,
* requires_majority_read_concern,
* requires_profiling,
- * uses_transactions,
- * requires_fcv_47
+ * uses_transactions
* ]
*/
(function() {
diff --git a/jstests/sharding/safe_secondary_reads_drop_recreate.js b/jstests/sharding/safe_secondary_reads_drop_recreate.js
index aa367dbd1f2..ec7192d9ccb 100644
--- a/jstests/sharding/safe_secondary_reads_drop_recreate.js
+++ b/jstests/sharding/safe_secondary_reads_drop_recreate.js
@@ -15,7 +15,6 @@
* *when the the collection has been dropped and recreated as empty.*
* - behavior: Must be "unshardedOnly", or "versioned". Determines what system profiler checks are
* performed.
- * @tags: [requires_fcv_47]
*/
(function() {
"use strict";
diff --git a/jstests/sharding/safe_secondary_reads_single_migration_suspend_range_deletion.js b/jstests/sharding/safe_secondary_reads_single_migration_suspend_range_deletion.js
index 5c45d083ae0..7c3bf9646e1 100644
--- a/jstests/sharding/safe_secondary_reads_single_migration_suspend_range_deletion.js
+++ b/jstests/sharding/safe_secondary_reads_single_migration_suspend_range_deletion.js
@@ -22,7 +22,6 @@
* results for the command run with read concern 'available'.
* - behavior: Must be one of "unshardedOnly", "targetsPrimaryUsesConnectionVersioning" or
* "versioned". Determines what system profiler checks are performed.
- * @tags: [requires_fcv_47]
*/
(function() {
"use strict";
diff --git a/jstests/sharding/safe_secondary_reads_single_migration_waitForDelete.js b/jstests/sharding/safe_secondary_reads_single_migration_waitForDelete.js
index 674f76d4add..b96b811f1a1 100644
--- a/jstests/sharding/safe_secondary_reads_single_migration_waitForDelete.js
+++ b/jstests/sharding/safe_secondary_reads_single_migration_waitForDelete.js
@@ -15,7 +15,6 @@
* *when the range has been deleted on the donor.*
* - behavior: Must be one of "unshardedOnly", "targetsPrimaryUsesConnectionVersioning" or
* "versioned". Determines what system profiler checks are performed.
- * @tags: [requires_fcv_47]
*/
(function() {
"use strict";