summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
Diffstat (limited to 'meta')
-rw-r--r--meta/lib/oeqa/utils/qemurunner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py
index 277cd32848..cda43aad8c 100644
--- a/meta/lib/oeqa/utils/qemurunner.py
+++ b/meta/lib/oeqa/utils/qemurunner.py
@@ -650,9 +650,9 @@ class QemuRunner:
650 if hasattr(self, 'qmp') and self.qmp: 650 if hasattr(self, 'qmp') and self.qmp:
651 self.qmp.settimeout(timeout) 651 self.qmp.settimeout(timeout)
652 if args is not None: 652 if args is not None:
653 return self.qmp.cmd(command, args) 653 return self.qmp.cmd_raw(command, args)
654 else: 654 else:
655 return self.qmp.cmd(command) 655 return self.qmp.cmd_raw(command)
656 656
657 def run_serial(self, command, raw=False, timeout=60): 657 def run_serial(self, command, raw=False, timeout=60):
658 # Returns (status, output) where status is 1 on success and 0 on error 658 # Returns (status, output) where status is 1 on success and 0 on error