未验证 提交 43829371 编写于 作者: X Xu Han 提交者: GitHub

Merge pull request #1214 from lijinlijin/balloon_illegal

balloon_check: Extend sleep time to wait guest reach ready status
...@@ -25,8 +25,12 @@ class BallooningTest(MemoryBaseTest): ...@@ -25,8 +25,12 @@ class BallooningTest(MemoryBaseTest):
self.vm = env.get_vm(params["main_vm"]) self.vm = env.get_vm(params["main_vm"])
self.session = self.get_session(self.vm) self.session = self.get_session(self.vm)
logging.info("Waiting 90s for guest's applications up") if self.params.get('os_type') == 'windows':
time.sleep(90) sleep_time = 180
else:
sleep_time = 90
logging.info("Waiting %d seconds for guest's applications up" % sleep_time)
time.sleep(sleep_time)
self.ori_mem = self.get_vm_mem(self.vm) self.ori_mem = self.get_vm_mem(self.vm)
self.current_mmem = self.get_ballooned_memory() self.current_mmem = self.get_ballooned_memory()
if self.current_mmem != self.ori_mem: if self.current_mmem != self.ori_mem:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册