summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oeqa/targetcontrol.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py
index 1fdff82889..b8d4ea8a70 100644
--- a/meta/lib/oeqa/targetcontrol.py
+++ b/meta/lib/oeqa/targetcontrol.py
@@ -205,7 +205,7 @@ class QemuTarget(BaseTarget):
205 self.server_ip = self.runner.server_ip 205 self.server_ip = self.runner.server_ip
206 self.connection = SSHControl(ip=self.ip, logfile=self.sshlog) 206 self.connection = SSHControl(ip=self.ip, logfile=self.sshlog)
207 else: 207 else:
208 raise RuntimError("%s - FAILED to re-start qemu - check the task log and the boot log" % self.pn) 208 raise RuntimeError("%s - FAILED to re-start qemu - check the task log and the boot log" % self.pn)
209 209
210 def run_serial(self, command, timeout=60): 210 def run_serial(self, command, timeout=60):
211 return self.runner.run_serial(command, timeout=timeout) 211 return self.runner.run_serial(command, timeout=timeout)