summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest
diff options
context:
space:
mode:
authorDeepesh Varatharajan <Deepesh.Varatharajan@windriver.com>2024-10-27 21:50:02 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-10-29 11:19:57 +0000
commitda42d0dc11bf8b57d28d4439547e987c66bd712c (patch)
treef62309a37ff92e3e8020ff1a97012c2ad4d7632f /meta/lib/oeqa/selftest
parent0a27b7b9a478430e1e41ef387f1c5b7fbf03f8e8 (diff)
downloadpoky-da42d0dc11bf8b57d28d4439547e987c66bd712c.tar.gz
rust: Remove passing test cases from the exclude list in the Rust OE self-test.
There were some rust tests which were FAILing only for mips architectures. Hence, they were added to the exclusion list to avoid the failures when running rust oe-selftest for mips architectures.The current yocto framework disabled the rust oe-selftest for mips architectures.Hence, these tests have been added back to the test framework. The rust-1.79 has been successfully tested on X86, X86_64, ARM, AARCH64 and PPC Architectures with the current test inclusions. (From OE-Core rev: e1ec1ad75feb1321228bf3b52251e1aecfdb8746) Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest')
-rw-r--r--meta/lib/oeqa/selftest/cases/rust.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/meta/lib/oeqa/selftest/cases/rust.py b/meta/lib/oeqa/selftest/cases/rust.py
index 6cf1d262d5..010abefd16 100644
--- a/meta/lib/oeqa/selftest/cases/rust.py
+++ b/meta/lib/oeqa/selftest/cases/rust.py
@@ -74,9 +74,7 @@ class RustSelfTestSystemEmulated(OESelftestTestCase, OEPTestResultTestCase):
74 'src/tools/rustdoc-themes', 74 'src/tools/rustdoc-themes',
75 'src/tools/rust-installer', 75 'src/tools/rust-installer',
76 'src/tools/suggest-tests', 76 'src/tools/suggest-tests',
77 'src/tools/tidy/src/',
78 'tests/assembly/asm/aarch64-outline-atomics.rs', 77 'tests/assembly/asm/aarch64-outline-atomics.rs',
79 'tests/codegen/abi-main-signature-32bit-c-int.rs',
80 'tests/codegen/issues/issue-122805.rs', 78 'tests/codegen/issues/issue-122805.rs',
81 'tests/codegen/thread-local.rs', 79 'tests/codegen/thread-local.rs',
82 'tests/mir-opt/', 80 'tests/mir-opt/',
@@ -91,7 +89,6 @@ class RustSelfTestSystemEmulated(OESelftestTestCase, OEPTestResultTestCase):
91 'tests/ui/debuginfo/debuginfo-emit-llvm-ir-and-split-debuginfo.rs', 89 'tests/ui/debuginfo/debuginfo-emit-llvm-ir-and-split-debuginfo.rs',
92 'tests/ui-fulldeps/', 90 'tests/ui-fulldeps/',
93 'tests/ui/process/nofile-limit.rs', 91 'tests/ui/process/nofile-limit.rs',
94 'tests/ui/structs-enums/multiple-reprs.rs',
95 'tidyselftest' 92 'tidyselftest'
96 ] 93 ]
97 94