1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 17:19:20 +00:00

oeqa/targetcontrol: fix misspelled RuntimeError

(From OE-Core rev: 92ffc35052768c753a89b4839c70db87072437a2)

Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Enrico Jörns
2023-03-31 12:26:14 +02:00
committed by Richard Purdie
parent 4d2c6baba5
commit ed363d0ec9
+1 -1
View File
@@ -205,7 +205,7 @@ class QemuTarget(BaseTarget):
self.server_ip = self.runner.server_ip self.server_ip = self.runner.server_ip
self.connection = SSHControl(ip=self.ip, logfile=self.sshlog) self.connection = SSHControl(ip=self.ip, logfile=self.sshlog)
else: else:
raise RuntimError("%s - FAILED to re-start qemu - check the task log and the boot log" % self.pn) raise RuntimeError("%s - FAILED to re-start qemu - check the task log and the boot log" % self.pn)
def run_serial(self, command, timeout=60): def run_serial(self, command, timeout=60):
return self.runner.run_serial(command, timeout=timeout) return self.runner.run_serial(command, timeout=timeout)