1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-04 14:09:47 +00:00

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>
This commit is contained in:
Enrico Jörns
2023-03-31 12:26:13 +02:00
committed by Steve Sakoman
parent 5e4a87d6e9
commit 3f20a7cc1f
+2 -2
View File
@@ -4,13 +4,13 @@
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
# #
import os
import re import re
import tempfile
import time import time
import oe.types import oe.types
from oeqa.core.decorator import OETestTag from oeqa.core.decorator import OETestTag
from oeqa.selftest.case import OESelftestTestCase from oeqa.selftest.case import OESelftestTestCase
from oeqa.utils.commands import bitbake, runqemu, get_bb_var, runCmd from oeqa.utils.commands import bitbake, runqemu, get_bb_var
@OETestTag("runqemu") @OETestTag("runqemu")
class RunqemuTests(OESelftestTestCase): class RunqemuTests(OESelftestTestCase):