1
0
Fork 0

forgot to add bucket splitting (#5561)

This commit is contained in:
Wilfried Goesgens 2018-06-08 10:54:10 +02:00 committed by Jan
parent c5ac519d1c
commit a416d12fd8
1 changed files with 6 additions and 0 deletions

View File

@ -82,6 +82,8 @@ function httpReplication (options) {
let testCases = tu.scanTestPaths(testPaths.http_replication);
testCases = tu.splitBuckets(options, testCases);
return tu.performTests(opts, testCases, 'http_replication', tu.runInRSpec);
}
@ -97,6 +99,8 @@ function httpServer (options) {
let testCases = tu.scanTestPaths(testPaths.http_server);
testCases = tu.splitBuckets(options, testCases);
return tu.performTests(opts, testCases, 'http_server', tu.runInRSpec);
}
@ -121,6 +125,8 @@ function sslServer (options) {
let testCases = tu.scanTestPaths(testPaths.ssl_server);
testCases = tu.splitBuckets(options, testCases);
return tu.performTests(opts, testCases, 'ssl_server', tu.runInRSpec);
}