summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEnrico Jörns <ejo@pengutronix.de>2023-03-31 12:26:13 +0200
committerSteve Sakoman <steve@sakoman.com>2023-04-14 06:30:29 -1000
commit3f20a7cc1f6b8d3cd25df08057e81bceb6b11333 (patch)
treed527a194004858b83c09680910e90fa346aa70f7
parent5e4a87d6e915b2a65f3d9dd6296c1558a49ebdaf (diff)
downloadpoky-3f20a7cc1f6b8d3cd25df08057e81bceb6b11333.tar.gz
oeqa/selftest/cases/runqemu: update imports
'tempfile' and 'oeqa.utils.command.runCmd' are unused while 'os' is actually used. (From OE-Core rev: 21a31082b7100f82280c1e0b225e6d82b9f6e4f9) Signed-off-by: Enrico Jorns <ejo@pengutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 50f766233e83528eebeca92877277374c7193530) Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r--meta/lib/oeqa/selftest/cases/runqemu.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/runqemu.py b/meta/lib/oeqa/selftest/cases/runqemu.py
index c1d277a095..72ca77b845 100644
--- a/meta/lib/oeqa/selftest/cases/runqemu.py
+++ b/meta/lib/oeqa/selftest/cases/runqemu.py
@@ -4,13 +4,13 @@
4# SPDX-License-Identifier: MIT 4# SPDX-License-Identifier: MIT
5# 5#
6 6
7import os
7import re 8import re
8import tempfile
9import time 9import time
10import oe.types 10import oe.types
11from oeqa.core.decorator import OETestTag 11from oeqa.core.decorator import OETestTag
12from oeqa.selftest.case import OESelftestTestCase 12from oeqa.selftest.case import OESelftestTestCase
13from oeqa.utils.commands import bitbake, runqemu, get_bb_var, runCmd 13from oeqa.utils.commands import bitbake, runqemu, get_bb_var
14 14
15@OETestTag("runqemu") 15@OETestTag("runqemu")
16class RunqemuTests(OESelftestTestCase): 16class RunqemuTests(OESelftestTestCase):