diff mbox

kvm-autotest: kvm_vm.py get values from nic_params dict

Message ID 20090403002817.GA20681@us.ibm.com (mailing list archive)
State Not Applicable
Headers show

Commit Message

Ryan Harper April 3, 2009, 12:28 a.m. UTC
Looks like cut-n-paste error.  We should be fetching values from
nic_params, not image params.
diff mbox

Patch

diffstat output:
 kvm_vm.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

Signed-off-by: Ryan Harper <ryanh@us.ibm.com>
---
diff --git a/client/tests/kvm_runtest_2/kvm_vm.py b/client/tests/kvm_runtest_2/kvm_vm.py
index 2e6599e..5136a26 100644
--- a/client/tests/kvm_runtest_2/kvm_vm.py
+++ b/client/tests/kvm_runtest_2/kvm_vm.py
@@ -189,8 +189,8 @@  class VM:
         for nic_name in kvm_utils.get_sub_dict_names(params, "nics"):
             nic_params = kvm_utils.get_sub_dict(params, nic_name)
             qemu_cmd += " -net nic,vlan=%d" % vlan
-            if image_params.get("nic_model"):
-                qemu_cmd += ",model=%s" % image_params.get("nic_model")
+            if nic_params.get("nic_model"):
+                qemu_cmd += ",model=%s" % nic_params.get("nic_model")
             qemu_cmd += " -net user,vlan=%d" % vlan
             vlan += 1