1
0
Fork 0

Switch off importing test in the cluster because feature not yet implemented.

This commit is contained in:
Max Neunhoeffer 2014-12-08 11:27:19 +01:00
parent 0203c8ca7c
commit 32c6262586
1 changed files with 3 additions and 1 deletions

View File

@ -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) &&