Skip to content

Commit c477dfd

Browse files
authored
Merge pull request autotest#4259 from xiagao/bz3377-balloon-stress
balloon_stress: update cmd_output_safe() with cmd_output()
2 parents 44d95fd + c406f3b commit c477dfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qemu/tests/balloon_stress.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def check_bg_running():
2828
"""
2929
if params["os_type"] == "windows":
3030
list_cmd = params.get("list_cmd", "wmic process get name")
31-
output = session.cmd_output_safe(list_cmd, timeout=60)
31+
output = session.cmd_output(list_cmd, timeout=60)
3232
process = re.findall("mplayer", output, re.M | re.I)
3333
return bool(process)
3434
else:

0 commit comments

Comments
 (0)