From c04645360f75e030a2e815f82e605abd773a66d0 Mon Sep 17 00:00:00 2001 From: Michael Hanselmann <hansmi@google.com> Date: Thu, 21 Feb 2013 16:26:31 +0100 Subject: [PATCH] QA: Disable OOB tests for virtual clusters They do not work properly at the moment. Signed-off-by: Michael Hanselmann <hansmi@google.com> Reviewed-by: Bernardo Dal Seno <bdalseno@google.com> --- qa/ganeti-qa.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qa/ganeti-qa.py b/qa/ganeti-qa.py index 39d419a4e..791f4b305 100755 --- a/qa/ganeti-qa.py +++ b/qa/ganeti-qa.py @@ -186,7 +186,8 @@ def RunClusterTests(): ("cluster-master-failover", qa_cluster.TestClusterMasterFailover), ("cluster-master-failover", qa_cluster.TestClusterMasterFailoverWithDrainedQueue), - ("cluster-oob", qa_cluster.TestClusterOob), + (["cluster-oob", qa_config.NoVirtualCluster], + qa_cluster.TestClusterOob), ("rapi", qa_rapi.TestVersion), ("rapi", qa_rapi.TestEmptyCluster), ("rapi", qa_rapi.TestRapiQuery), @@ -321,7 +322,7 @@ def RunCommonNodeTests(): """ RunTestIf("node-volumes", qa_node.TestNodeVolumes) RunTestIf("node-storage", qa_node.TestNodeStorage) - RunTestIf("node-oob", qa_node.TestOutOfBand) + RunTestIf(["node-oob", qa_config.NoVirtualCluster], qa_node.TestOutOfBand) def RunGroupListTests(): -- GitLab