mirror of https://gitee.com/bigwinds/arangodb
added buckets
This commit is contained in:
parent
cdf9f446b8
commit
1bd25865fe
|
@ -48,6 +48,8 @@ function shellClient (options) {
|
|||
testCases = testCases.concat(tu.scanTestPath('js/client/tests/http'));
|
||||
testCases = testCases.concat(tu.scanTestPath('js/client/tests/shell'));
|
||||
|
||||
testCases = tu.splitBuckets(options, testCases);
|
||||
|
||||
return tu.performTests(options, testCases, 'shell_client', tu.runInArangosh);
|
||||
}
|
||||
|
||||
|
@ -61,6 +63,8 @@ function shellServer (options) {
|
|||
let testCases = tu.scanTestPath('js/common/tests/shell');
|
||||
testCases = testCases.concat(tu.scanTestPath('js/server/tests/shell'));
|
||||
|
||||
testCases = tu.splitBuckets(options, testCases);
|
||||
|
||||
return tu.performTests(options, testCases, 'shell_server', tu.runThere);
|
||||
}
|
||||
|
||||
|
@ -71,6 +75,8 @@ function shellServer (options) {
|
|||
function shellServerOnly (options) {
|
||||
let testCases = tu.scanTestPath('js/server/tests/shell');
|
||||
|
||||
testCases = tu.splitBuckets(options, testCases);
|
||||
|
||||
return tu.performTests(options, testCases, 'shell_server_only', tu.runThere);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue