summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorArun Banala <arun.banala@mongodb.com>2020-08-06 16:28:38 +0100
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-08-06 15:41:36 +0000
commitffc257fed4a67caece86c93f9e216d32856cd303 (patch)
tree42e0896463460f091caf072f52da9c6ddb353ef9 /buildscripts
parentc28bed3139da257c0fe225f31ebac9e1afcc913c (diff)
downloadmongo-ffc257fed4a67caece86c93f9e216d32856cd303.tar.gz
Revert "SERVER-49149 Add test coverage for configurations with delta oplog entries enabled"
This reverts commit b8b24f4b52188efc07daf2dbc81f38e7194aac9e.
Diffstat (limited to 'buildscripts')
-rw-r--r--buildscripts/resmokeconfig/suites/replica_sets_update_v2_oplog.yml16
-rw-r--r--buildscripts/resmokeconfig/suites/replica_sets_update_v2_oplog_jscore_passthrough.yml52
2 files changed, 0 insertions, 68 deletions
diff --git a/buildscripts/resmokeconfig/suites/replica_sets_update_v2_oplog.yml b/buildscripts/resmokeconfig/suites/replica_sets_update_v2_oplog.yml
deleted file mode 100644
index aba46a0f28c..00000000000
--- a/buildscripts/resmokeconfig/suites/replica_sets_update_v2_oplog.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-test_kind: js_test
-
-selector:
- roots:
- - jstests/replsets/*.js
- exclude_files:
-
-executor:
- config:
- shell_options:
- nodb: ''
- readMode: commands
- global_vars:
- TestData:
- setParameters:
- internalQueryEnableLoggingV2OplogEntries: true
diff --git a/buildscripts/resmokeconfig/suites/replica_sets_update_v2_oplog_jscore_passthrough.yml b/buildscripts/resmokeconfig/suites/replica_sets_update_v2_oplog_jscore_passthrough.yml
deleted file mode 100644
index 47686c313ef..00000000000
--- a/buildscripts/resmokeconfig/suites/replica_sets_update_v2_oplog_jscore_passthrough.yml
+++ /dev/null
@@ -1,52 +0,0 @@
-test_kind: js_test
-use_in_multiversion: replica_sets_jscore_multiversion_passthrough
-
-selector:
- roots:
- - jstests/core/**/*.js
- exclude_files:
- # These tests are not expected to pass with replica-sets:
- - jstests/core/dbadmin.js
- - jstests/core/opcounters_write_cmd.js
- - jstests/core/read_after_optime.js
- - jstests/core/capped_update.js
- # These tests change the transactionLifetimeLimitSeconds server parameter which conflicts with how
- # the CheckReplDBHashInBackground hook doesn't want transactions to be reaped while it is running.
- - jstests/core/txns/abort_expired_transaction.js
- - jstests/core/txns/abort_transaction_thread_does_not_block_on_locks.js
- - jstests/core/txns/kill_op_on_txn_expiry.js
- # The set_param1.js test attempts to compare the response from running the {getParameter: "*"}
- # command multiple times, which may observe the change to the "transactionLifetimeLimitSeconds"
- # server parameter.
- - jstests/core/set_param1.js
-
-executor:
- archive:
- hooks:
- - CheckReplDBHashInBackground
- - ValidateCollectionsInBackground
- - CheckReplDBHash
- - CheckReplOplogs
- - ValidateCollections
- config:
- shell_options:
- eval: "testingReplication = true;"
- readMode: commands
- hooks:
- # The CheckReplDBHash hook waits until all operations have replicated to and have been applied
- # on the secondaries, so we run the ValidateCollections hook after it to ensure we're
- # validating the entire contents of the collection.
- - class: CheckReplDBHashInBackground
- - class: ValidateCollectionsInBackground
- - class: CheckReplOplogs
- - class: CheckReplDBHash
- - class: ValidateCollections
- - class: CleanEveryN
- n: 20
- fixture:
- class: ReplicaSetFixture
- mongod_options:
- set_parameters:
- enableTestCommands: 1
- internalQueryEnableLoggingV2OplogEntries: true
- num_nodes: 2