diff options
-rw-r--r-- | meta/lib/oeqa/utils/qemurunner.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py index 76296d50cd..4c3d2010fb 100644 --- a/meta/lib/oeqa/utils/qemurunner.py +++ b/meta/lib/oeqa/utils/qemurunner.py | |||
@@ -618,6 +618,8 @@ class QemuRunner: | |||
618 | return self.qmp.cmd(command) | 618 | return self.qmp.cmd(command) |
619 | 619 | ||
620 | def run_serial(self, command, raw=False, timeout=60): | 620 | def run_serial(self, command, raw=False, timeout=60): |
621 | # Returns (status, output) where status is 1 on success and 0 on error | ||
622 | |||
621 | # We assume target system have echo to get command status | 623 | # We assume target system have echo to get command status |
622 | if not raw: | 624 | if not raw: |
623 | command = "%s; echo $?\n" % command | 625 | command = "%s; echo $?\n" % command |