You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ts...@apache.org on 2013/06/10 17:37:26 UTC

git commit: updated refs/heads/master to 3f3c6aa

Updated Branches:
  refs/heads/master ef0e0f36b -> 3f3c6aa35


Test should find Routing hosts not specific hypervisor_type

Bug in listing hosts that can be used for deploying VMs. Use Routing
hosts to identify hosts regardless of hypervisor_type.

Signed-off-by: Prasanna Santhanam <ts...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/3f3c6aa3
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/3f3c6aa3
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/3f3c6aa3

Branch: refs/heads/master
Commit: 3f3c6aa35f64c4129c203d54840524e6aa2c4621
Parents: ef0e0f3
Author: Prasanna Santhanam <ts...@apache.org>
Authored: Mon Jun 10 21:05:33 2013 +0530
Committer: Prasanna Santhanam <ts...@apache.org>
Committed: Mon Jun 10 21:05:33 2013 +0530

----------------------------------------------------------------------
 .../smoke/test_deploy_vms_with_varied_deploymentplanners.py        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/3f3c6aa3/test/integration/smoke/test_deploy_vms_with_varied_deploymentplanners.py
----------------------------------------------------------------------
diff --git a/test/integration/smoke/test_deploy_vms_with_varied_deploymentplanners.py b/test/integration/smoke/test_deploy_vms_with_varied_deploymentplanners.py
index f1b3043..af83299 100644
--- a/test/integration/smoke/test_deploy_vms_with_varied_deploymentplanners.py
+++ b/test/integration/smoke/test_deploy_vms_with_varied_deploymentplanners.py
@@ -76,7 +76,7 @@ class TestDeployVmWithVariedPlanners(cloudstackTestCase):
             domainid=cls.domain.id
         )
         cls.services["account"] = cls.account.name
-        cls.hosts = Host.list(cls.apiclient, hypervisortype='Simulator')
+        cls.hosts = Host.list(cls.apiclient, type='Routing')
         cls.cleanup = [
             cls.account
         ]