[V1] tests/vm_power_manager: fix script

Message ID 20220429135913.1862-1-songx.jiale@intel.com (mailing list archive)
State Superseded
Headers
Series [V1] tests/vm_power_manager: fix script |

Checks

Context Check Description
ci/Intel-dts-suite-test warning SKIPPED

Commit Message

Jiale, SongX April 29, 2022, 1:59 p.m. UTC
  restart libvirtd service before instantiating libvirtkvm. otherwise, 
the instantiation of libvirtkvm will fail, resulting in suite block.

Signed-off-by: Jiale Song <songx.jiale@intel.com>
---
 tests/TestSuite_vm_power_manager.py | 2 ++
 1 file changed, 2 insertions(+)
  

Patch

diff --git a/tests/TestSuite_vm_power_manager.py b/tests/TestSuite_vm_power_manager.py
index 917a60f3..cc535436 100644
--- a/tests/TestSuite_vm_power_manager.py
+++ b/tests/TestSuite_vm_power_manager.py
@@ -60,6 +60,8 @@  class TestVmPowerManager(TestCase):
 
         # map between host vcpu and guest vcpu
         self.vcpu_map = []
+        # restart libvirtd service
+        self.dut.send_expect("service libvirtd restart", "# ")
         # start vm
         self.vm_name = "vm0"
         self.vm = LibvirtKvm(self.dut, self.vm_name, self.suite_name)