summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2024-10-22 18:18:26 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-10-24 15:18:54 +0100
commitd8ec024b8306d8db68213405eb424312cddf520e (patch)
tree107d353514311b79e1ad3112f5eb51600eebf842 /meta/lib
parent13db230e423fbc89e2dc9c73e58556a277a06e5f (diff)
downloadpoky-d8ec024b8306d8db68213405eb424312cddf520e.tar.gz
oeqa/selftest/rust: remove unused imports or code
Remove unused imports, or disabling code which has been commented out. (From OE-Core rev: e0ff4813b1cf4df0d851c857d57fb88d7db51bdd) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/selftest/cases/rust.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/meta/lib/oeqa/selftest/cases/rust.py b/meta/lib/oeqa/selftest/cases/rust.py
index fab6267b15..6cf1d262d5 100644
--- a/meta/lib/oeqa/selftest/cases/rust.py
+++ b/meta/lib/oeqa/selftest/cases/rust.py
@@ -1,12 +1,11 @@
1# SPDX-License-Identifier: MIT 1# SPDX-License-Identifier: MIT
2import os
3import subprocess 2import subprocess
4import time 3import time
5from oeqa.core.decorator import OETestTag 4from oeqa.core.decorator import OETestTag
6from oeqa.core.decorator.data import skipIfArch 5from oeqa.core.decorator.data import skipIfArch
7from oeqa.core.case import OEPTestResultTestCase 6from oeqa.core.case import OEPTestResultTestCase
8from oeqa.selftest.case import OESelftestTestCase 7from oeqa.selftest.case import OESelftestTestCase
9from oeqa.utils.commands import runCmd, bitbake, get_bb_var, get_bb_vars, runqemu, Command 8from oeqa.utils.commands import runCmd, bitbake, get_bb_var, runqemu
10from oeqa.utils.sshcontrol import SSHControl 9from oeqa.utils.sshcontrol import SSHControl
11 10
12def parse_results(filename): 11def parse_results(filename):
@@ -42,9 +41,6 @@ class RustSelfTestSystemEmulated(OESelftestTestCase, OEPTestResultTestCase):
42 41
43 @skipIfArch(['mips', 'mips64']) 42 @skipIfArch(['mips', 'mips64'])
44 def test_rust(self, *args, **kwargs): 43 def test_rust(self, *args, **kwargs):
45 # Disable Rust Oe-selftest
46 #self.skipTest("The Rust Oe-selftest is disabled.")
47
48 # build remote-test-server before image build 44 # build remote-test-server before image build
49 recipe = "rust" 45 recipe = "rust"
50 start_time = time.time() 46 start_time = time.time()