blob: 159ff0919c99e63e63e0c81377fda5b1bf46a9a9 (
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
|
'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 take too long when composed because eval takes a
// global lock and the composer doesn't honor iteration counts:
'remove_single_document_eval.js',
'update_simple_eval.js',
// These workloads take too long when composed because server-side JS
// is slow and the composer doesn't honor iteration counts:
'remove_single_document_eval_nolock.js',
'update_simple_eval_nolock.js',
].map(function(file) {
return dir + '/' + file;
});
// SERVER-16196 re-enable executing workloads
// runCompositionOfWorkloads(ls(dir).filter(function(file) {
// return !Array.contains(blacklist, file);
// }));
|