summaryrefslogtreecommitdiff
path: root/buildscripts/resmokeconfig/suites/retryable_writes_jscore_passthrough.yml
blob: a98b722256223c84fc302fce124de3fffe7087be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
test_kind: js_test

selector:
  roots:
  - jstests/core/**/*.js
  exclude_files:
  # These tests are not expected to pass with replica-sets:
  - jstests/core/capped_update.js
  - 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:
    shell_options:
      eval: >-
        testingReplication = true;
        load("jstests/libs/override_methods/enable_sessions.js");
      global_vars:
        TestData:
          sessionOptions:
            retryWrites: 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: 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
  fixture:
    class: ReplicaSetFixture
    mongod_options:
      oplogSize: 511
      set_parameters:
        enableTestCommands: 1
        numInitialSyncAttempts: 1
    num_nodes: 2