summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/targetcontrol.py
diff options
context:
space:
mode:
authorEnrico Jörns <ejo@pengutronix.de>2023-03-31 12:26:14 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-03-31 23:30:36 +0100
commited363d0ec9a03d033a4bb173d23834d8225292ce (patch)
tree9a82e7429a125bd4bff85d2a8aac06023504ee4b /meta/lib/oeqa/targetcontrol.py
parent4d2c6baba57156c667c4aaa4fd6c8fe7e7629443 (diff)
downloadpoky-ed363d0ec9a03d033a4bb173d23834d8225292ce.tar.gz
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>
Diffstat (limited to 'meta/lib/oeqa/targetcontrol.py')
-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)