diff options
| author | Yash Shinde <Yash.Shinde@windriver.com> | 2024-08-08 03:00:33 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-08-09 22:33:38 +0100 |
| commit | ab1bd4a04bc7d392d3910cb9adf2f950508dd684 (patch) | |
| tree | b0b86aa27eace453fc71f0a74d41c495ec097f80 /meta/lib | |
| parent | 2bf34e2859879b912fa1bc9d9d0124233bc2081c (diff) | |
| download | poky-ab1bd4a04bc7d392d3910cb9adf2f950508dd684.tar.gz | |
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>
Diffstat (limited to 'meta/lib')
| -rw-r--r-- | meta/lib/oeqa/selftest/cases/rust.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/rust.py b/meta/lib/oeqa/selftest/cases/rust.py index 4ccbe9867b..6181c10ea9 100644 --- a/meta/lib/oeqa/selftest/cases/rust.py +++ b/meta/lib/oeqa/selftest/cases/rust.py | |||
| @@ -187,6 +187,25 @@ class RustSelfTestSystemEmulated(OESelftestTestCase, OEPTestResultTestCase): | |||
| 187 | 'tests/rustdoc-ui/no-run-flag.rs', | 187 | 'tests/rustdoc-ui/no-run-flag.rs', |
| 188 | 'tests/ui-fulldeps/', | 188 | 'tests/ui-fulldeps/', |
| 189 | 'tests/ui/numbers-arithmetic/u128.rs' | 189 | 'tests/ui/numbers-arithmetic/u128.rs' |
| 190 | 'tests/run-pass-valgrind', | ||
| 191 | 'tests/ui/codegen/mismatched-data-layouts.rs', | ||
| 192 | 'tests/codegen/i128-x86-align.rs', | ||
| 193 | 'src/tools/suggest-tests', | ||
| 194 | 'src/tools/rust-installer', | ||
| 195 | 'src/bootstrap', | ||
| 196 | 'src/tools/tidy/src/', | ||
| 197 | 'library/std/src/thread/tests.rs', | ||
| 198 | 'compiler/rustc_errors/src/markdown/tests/term.rs', | ||
| 199 | 'compiler/rustc_interface/src/tests.rs', | ||
| 200 | 'library/std/src/io/buffered/tests.rs', | ||
| 201 | 'library/std/src/io/stdio/tests.rs', | ||
| 202 | 'library/std/src/sync/mpsc/sync_tests.rs', | ||
| 203 | 'library/std/src/sync/mpsc/tests.rs', | ||
| 204 | 'library/std/src/sync/mutex/tests.rs', | ||
| 205 | 'library/std/src/sync/rwlock/tests.rs', | ||
| 206 | 'library/std/src/thread/tests.rs', | ||
| 207 | 'library/test/src/stats/tests.rs', | ||
| 208 | 'tidyselftest' | ||
| 190 | ] | 209 | ] |
| 191 | 210 | ||
| 192 | exclude_fail_tests = " ".join([" --exclude " + item for item in exclude_list]) | 211 | exclude_fail_tests = " ".join([" --exclude " + item for item in exclude_list]) |
