diff options
author | Enrico Jörns <ejo@pengutronix.de> | 2023-03-31 12:26:14 +0200 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2023-04-14 06:30:29 -1000 |
commit | ab3f78f96045b3627f50c383c8b36632d871b23a (patch) | |
tree | 820753fa4688b6dbf68201b8a6034683d02b3a59 | |
parent | 3f20a7cc1f6b8d3cd25df08057e81bceb6b11333 (diff) | |
download | poky-ab3f78f96045b3627f50c383c8b36632d871b23a.tar.gz |
oeqa/targetcontrol: fix misspelled RuntimeError
(From OE-Core rev: 21c513fccbf743f9000c3b7b13fc4962c3ae5c7d)
Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 92ffc35052768c753a89b4839c70db87072437a2)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r-- | meta/lib/oeqa/targetcontrol.py | 2 |
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) |