[Libvirt-cim] [PATCH 4/9] Use symbols as named in libvirt-cim for easier reference

John Ferlan jferlan at redhat.com
Fri Mar 15 22:55:13 UTC 2013


---
 .../VirtualSystemManagementService/15_mod_system_settings.py  | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/suites/libvirt-cim/cimtest/VirtualSystemManagementService/15_mod_system_settings.py b/suites/libvirt-cim/cimtest/VirtualSystemManagementService/15_mod_system_settings.py
index e576fca..0be3ae0 100644
--- a/suites/libvirt-cim/cimtest/VirtualSystemManagementService/15_mod_system_settings.py
+++ b/suites/libvirt-cim/cimtest/VirtualSystemManagementService/15_mod_system_settings.py
@@ -37,7 +37,10 @@ from XenKvmLib.xm_virt_util import domain_list, active_domain_list, \
 sup_types = ['Xen', 'KVM', 'XenFV', 'LXC']
 default_dom = 'rstest_domain'
 cpu = 2
-RECOVERY_VAL = 3
+# AutomaticRecoveryAction
+NONE_VAL = 2
+RESTART_VAL = 3
+
 DEFINED_STATE = 3
 bug = "00008"
 f9_bug = "00010"
@@ -113,7 +116,7 @@ def main():
                 raise Expcetion("Failed to get the VSSD instance for %s" % \
                                 default_dom)
 
-            val = pywbem.cim_types.Uint16(RECOVERY_VAL)
+            val = pywbem.cim_types.Uint16(RESTART_VAL)
             inst['AutomaticRecoveryAction'] = val
             vssd = inst_to_mof(inst)
 
@@ -135,9 +138,9 @@ def main():
                 raise Exception("Failed to get the VSSD instance for %s" % \
                                 default_dom)
 
-            if inst.AutomaticRecoveryAction != RECOVERY_VAL:
+            if inst.AutomaticRecoveryAction != RESTART_VAL:
                 logger.error("Exp AutomaticRecoveryAction=%d, got %d", 
-                             RECOVERY_VAL, inst.AutomaticRecoveryAction)
+                             RESTART_VAL, inst.AutomaticRecoveryAction)
                 raise Exception("%s not updated properly" % default_dom)
 
             status = PASS
-- 
1.8.1.4




More information about the Libvirt-cim mailing list