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) {
|
testFuncs.importing = function (options) {
|
||||||
if (options.cluster) {
|
if (options.cluster) {
|
||||||
print("Skipped because of 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");
|
var instanceInfo = startInstance("tcp", options, [ ], "importing");
|
||||||
|
@ -1488,6 +1489,7 @@ function UnitTest (which, options) {
|
||||||
else {
|
else {
|
||||||
var r;
|
var r;
|
||||||
results[which] = r = testFuncs[which](options);
|
results[which] = r = testFuncs[which](options);
|
||||||
|
print("Testresult:", r);
|
||||||
ok = true;
|
ok = true;
|
||||||
for (i in r) {
|
for (i in r) {
|
||||||
if (r.hasOwnProperty(i) &&
|
if (r.hasOwnProperty(i) &&
|
||||||
|
|
Loading…
Reference in New Issue