diff options
author | Max Hirschhorn <max.hirschhorn@mongodb.com> | 2017-08-30 11:15:13 -0400 |
---|---|---|
committer | Max Hirschhorn <max.hirschhorn@mongodb.com> | 2017-08-30 11:15:13 -0400 |
commit | 03055999749ed577af14d5d9cc969f616b4c3196 (patch) | |
tree | bc226e0a3cf9a897a626b3d1a118e9c24367e040 /buildscripts | |
parent | 45d4ddb4aaaf5b0bbe36442659c76be494a92af0 (diff) | |
download | mongo-03055999749ed577af14d5d9cc969f616b4c3196.tar.gz |
SERVER-30686 Add retryable_writes_jscore_passthrough_WT task.
Diffstat (limited to 'buildscripts')
-rw-r--r-- | buildscripts/resmokeconfig/suites/retryable_writes_jscore_passthrough.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/buildscripts/resmokeconfig/suites/retryable_writes_jscore_passthrough.yml b/buildscripts/resmokeconfig/suites/retryable_writes_jscore_passthrough.yml index 4637156aae2..a319397b83b 100644 --- a/buildscripts/resmokeconfig/suites/retryable_writes_jscore_passthrough.yml +++ b/buildscripts/resmokeconfig/suites/retryable_writes_jscore_passthrough.yml @@ -9,6 +9,16 @@ selector: - jstests/core/dbadmin.js - jstests/core/opcounters_write_cmd.js - jstests/core/read_after_optime.js + # TODO SERVER-30325: The following tests perform many write operations and cause the Evergreen + # task to time out due to performance issues with tracking the transaction's progress. + - jstests/core/bulk_insert.js + - jstests/core/geo2.js + - jstests/core/geo3.js + - jstests/core/geo_s2explain.js + - jstests/core/geo_s2twofields.js + - jstests/core/insert1.js + - jstests/core/remove6.js + - jstests/core/removea.js executor: config: @@ -27,6 +37,13 @@ executor: # validating the entire contents of the collection. - class: CheckReplOplogs - class: CheckReplDBHash + shell_options: + global_vars: + TestData: + # TODO SERVER-30325: We temporarily ignore any dbhash mismatches from the + # "config.transactions" collection. + excludedDBsFromDBHash: + - config - class: ValidateCollections - class: CleanEveryN n: 20 |