diff options
author | Enrico Jörns <ejo@pengutronix.de> | 2023-03-31 12:26:13 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-03-31 23:30:36 +0100 |
commit | 4d2c6baba57156c667c4aaa4fd6c8fe7e7629443 (patch) | |
tree | 31a98135416e4b4e0a8e6c119b4db58a753abe25 /meta/lib/oeqa | |
parent | f67258fcbf40b1feaaac89ab5db9f5aee87261e2 (diff) | |
download | poky-4d2c6baba57156c667c4aaa4fd6c8fe7e7629443.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: 50f766233e83528eebeca92877277374c7193530)
Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/runqemu.py | 4 |
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 e72ff529c4..af45c048a4 100644 --- a/meta/lib/oeqa/selftest/cases/runqemu.py +++ b/meta/lib/oeqa/selftest/cases/runqemu.py | |||
@@ -4,14 +4,14 @@ | |||
4 | # SPDX-License-Identifier: MIT | 4 | # SPDX-License-Identifier: MIT |
5 | # | 5 | # |
6 | 6 | ||
7 | import os | ||
7 | import re | 8 | import re |
8 | import tempfile | ||
9 | import time | 9 | import time |
10 | import oe.types | 10 | import oe.types |
11 | from oeqa.core.decorator import OETestTag | 11 | from oeqa.core.decorator import OETestTag |
12 | from oeqa.core.decorator.data import skipIfNotArch, skipIfNotMachine | 12 | from oeqa.core.decorator.data import skipIfNotArch, skipIfNotMachine |
13 | from oeqa.selftest.case import OESelftestTestCase | 13 | from oeqa.selftest.case import OESelftestTestCase |
14 | from oeqa.utils.commands import bitbake, runqemu, get_bb_var, runCmd | 14 | from oeqa.utils.commands import bitbake, runqemu, get_bb_var |
15 | 15 | ||
16 | @OETestTag("runqemu") | 16 | @OETestTag("runqemu") |
17 | class RunqemuTests(OESelftestTestCase): | 17 | class RunqemuTests(OESelftestTestCase): |