summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_all_replication.js
blob: 6fa5ea93c2741663d7eac22ea14100a222d71c0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
'use strict';

load('jstests/concurrency/fsm_libs/runner.js');

var dir = 'jstests/concurrency/fsm_workloads';

var blacklist = [
    // Disabled due to known bugs

    // Disabled because the TTL monitor can delete documents in the background while we're comparing
    // dbhashes between the primary and secondaries (SERVER-21881).
    'indexed_insert_ttl.js',

    // Disabled due to MongoDB restrictions and/or workload restrictions
    'agg_group_external.js', // uses >100MB of data, which can overwhelm test hosts
    'agg_sort_external.js', // uses >100MB of data, which can overwhelm test hosts
].map(function(file) { return dir + '/' + file; });

runWorkloadsSerially(ls(dir).filter(function(file) {
    return !Array.contains(blacklist, file);
}), { replication: true });