1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-31 12:49:46 +00:00

rust: Oe-selftest fixes for rust v1.76

Add the failing tests in rust v1.76 to the exclude list
and add "ignore" tags to ignore failing unit test cases.

(From OE-Core rev: 75399802515ac423503e637281a4585dd00d7c75)

Signed-off-by: Yash Shinde <Yash.Shinde@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Yash Shinde
2024-08-08 03:00:33 -07:00
committed by Richard Purdie
parent 2bf34e2859
commit ab1bd4a04b
4 changed files with 373 additions and 0 deletions
+19
View File
@@ -187,6 +187,25 @@ class RustSelfTestSystemEmulated(OESelftestTestCase, OEPTestResultTestCase):
'tests/rustdoc-ui/no-run-flag.rs',
'tests/ui-fulldeps/',
'tests/ui/numbers-arithmetic/u128.rs'
'tests/run-pass-valgrind',
'tests/ui/codegen/mismatched-data-layouts.rs',
'tests/codegen/i128-x86-align.rs',
'src/tools/suggest-tests',
'src/tools/rust-installer',
'src/bootstrap',
'src/tools/tidy/src/',
'library/std/src/thread/tests.rs',
'compiler/rustc_errors/src/markdown/tests/term.rs',
'compiler/rustc_interface/src/tests.rs',
'library/std/src/io/buffered/tests.rs',
'library/std/src/io/stdio/tests.rs',
'library/std/src/sync/mpsc/sync_tests.rs',
'library/std/src/sync/mpsc/tests.rs',
'library/std/src/sync/mutex/tests.rs',
'library/std/src/sync/rwlock/tests.rs',
'library/std/src/thread/tests.rs',
'library/test/src/stats/tests.rs',
'tidyselftest'
]
exclude_fail_tests = " ".join([" --exclude " + item for item in exclude_list])