blob: e50e48656f1537ea83ee423bffd98b21fca89fbc (
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 MongoDB restrictions and/or workload restrictions
// These workloads implicitly assume that their tid ranges are [0, $config.threadCount). This
// isn't guaranteed to be true when they are run in parallel with other workloads.
'list_indexes.js',
'update_inc_capped.js',
'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; });
runWorkloadsInParallel(ls(dir).filter(function(file) {
return !Array.contains(blacklist, file);
}));
|