summaryrefslogtreecommitdiff
path: root/buildscripts/resmokeconfig/suites/integration_tests_replset.yml
blob: 94c51e885d22c2f17aeb3cac54a9983ef9bcd88a (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
test_kind: cpp_integration_test

selector:
  root: build/integration_tests.txt
  exclude_files:
  - build/**/mongo/client/client_dbclient_connection_integration_test* # Needs connection to single host.

executor:
  archive:
    hooks:
      - CheckReplDBHash
      - CheckReplOplogs
      - ValidateCollections
  config: {}
  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
  - class: ValidateCollections
  fixture:
    class: ReplicaSetFixture
    mongod_options:
      set_parameters:
        enableTestCommands: 1
    num_nodes: 2