summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--jstests/replsets/standalone_replication_recovery_idempotent.js4
-rw-r--r--jstests/replsets/temp_namespace_restart_as_standalone.js4
2 files changed, 6 insertions, 2 deletions
diff --git a/jstests/replsets/standalone_replication_recovery_idempotent.js b/jstests/replsets/standalone_replication_recovery_idempotent.js
index e8713e97ea1..86c9ccc95a1 100644
--- a/jstests/replsets/standalone_replication_recovery_idempotent.js
+++ b/jstests/replsets/standalone_replication_recovery_idempotent.js
@@ -4,7 +4,9 @@
*
* This test only makes sense for storage engines that support recover to stable timestamp.
* @tags: [requires_wiredtiger, requires_persistence, requires_journaling, requires_replication,
- * requires_majority_read_concern, uses_transactions, uses_prepare_transaction]
+ * requires_majority_read_concern, uses_transactions, uses_prepare_transaction,
+ * # Restarting as a standalone is not supported in multiversion tests.
+ * multiversion_incompatible]
*/
(function() {
diff --git a/jstests/replsets/temp_namespace_restart_as_standalone.js b/jstests/replsets/temp_namespace_restart_as_standalone.js
index 4fb4baefdad..9e428b48013 100644
--- a/jstests/replsets/temp_namespace_restart_as_standalone.js
+++ b/jstests/replsets/temp_namespace_restart_as_standalone.js
@@ -2,7 +2,9 @@
* Tests that temporary collections are not dropped when a member of a replica set is started up as
* a stand-alone mongod, i.e. without the --replSet parameter.
*
- * @tags: [requires_persistence, requires_majority_read_concern, requires_replication]
+ * @tags: [requires_persistence, requires_majority_read_concern, requires_replication,
+ * # Restarting as a standalone is not supported in multiversion tests.
+ * multiversion_incompatible]
*/
(function() {
var rst = new ReplSetTest({nodes: 2});