mirror of https://gitee.com/bigwinds/arangodb
Switch off importing test in the cluster because feature not yet implemented.
This commit is contained in:
parent
0203c8ca7c
commit
32c6262586
|
@ -1046,7 +1046,8 @@ var impTodo = [
|
|||
testFuncs.importing = function (options) {
|
||||
if (options.cluster) {
|
||||
print("Skipped because of cluster.");
|
||||
return {"ok":true, "skipped":0};
|
||||
return {"importing": {"status":true, "skipped":true,
|
||||
"message": "skipped because of cluster"}};
|
||||
}
|
||||
|
||||
var instanceInfo = startInstance("tcp", options, [ ], "importing");
|
||||
|
@ -1488,6 +1489,7 @@ function UnitTest (which, options) {
|
|||
else {
|
||||
var r;
|
||||
results[which] = r = testFuncs[which](options);
|
||||
print("Testresult:", r);
|
||||
ok = true;
|
||||
for (i in r) {
|
||||
if (r.hasOwnProperty(i) &&
|
||||
|
|
Loading…
Reference in New Issue