diff options
author | Jason Chan <jason.chan@10gen.com> | 2020-04-17 11:31:58 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-04-21 23:17:32 +0000 |
commit | b38c6815cee932098722b72430b3237da3fe312a (patch) | |
tree | dda153ac730d29f0a3dc3c0c891f9a06bbe118b3 /jstests | |
parent | ed21a76477577521dd0c22189d18bd9a126599f3 (diff) | |
download | mongo-b38c6815cee932098722b72430b3237da3fe312a.tar.gz |
SERVER-47489 Blacklist standalone_replication_recovery_idempotent.js and temp_namespace_restart_as_standalone from multiversion testing
(cherry picked from commit 3c3661f83ab419b533b7ed8cfaede2fc8ba7a780)
Diffstat (limited to 'jstests')
-rw-r--r-- | jstests/replsets/standalone_replication_recovery_idempotent.js | 4 | ||||
-rw-r--r-- | jstests/replsets/temp_namespace_restart_as_standalone.js | 4 |
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}); |