summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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()