mirror of https://gitee.com/bigwinds/arangodb
forgot to add bucket splitting (#5561)
This commit is contained in:
parent
c5ac519d1c
commit
a416d12fd8
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue