diff options
| author | Yash Shinde <Yash.Shinde@windriver.com> | 2024-01-25 05:16:01 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-01-26 14:06:55 +0000 |
| commit | 30872876dc9e22c2da2020fbd1e4b6277905410c (patch) | |
| tree | 48b2bb1d0408c033e2aa675721a2a1387433f7d5 /meta/lib/oeqa | |
| parent | ac7375e02f63b89fcfd8581bae29f4022c4e9668 (diff) | |
| download | poky-30872876dc9e22c2da2020fbd1e4b6277905410c.tar.gz | |
rust: Add new tests in the exclude list for rust oe-selftest
Add newly failing tests cases in the exclude list for
rust oe-selftest.
(From OE-Core rev: 50119ddaaa810ad71063691fb1cc30cf8c8456c8)
Signed-off-by: Yash Shinde <Yash.Shinde@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
| -rw-r--r-- | meta/lib/oeqa/selftest/cases/rust.py | 38 |
1 files changed, 37 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/rust.py b/meta/lib/oeqa/selftest/cases/rust.py index 6dbc517006..5f0cc73596 100644 --- a/meta/lib/oeqa/selftest/cases/rust.py +++ b/meta/lib/oeqa/selftest/cases/rust.py | |||
| @@ -262,7 +262,43 @@ class RustSelfTestSystemEmulated(OESelftestTestCase, OEPTestResultTestCase): | |||
| 262 | 'tests/ui/process/process-panic-after-fork.rs', | 262 | 'tests/ui/process/process-panic-after-fork.rs', |
| 263 | 'tests/ui/process/process-sigpipe.rs', | 263 | 'tests/ui/process/process-sigpipe.rs', |
| 264 | 'tests/ui/simd/target-feature-mixup.rs', | 264 | 'tests/ui/simd/target-feature-mixup.rs', |
| 265 | 'tests/ui/structs-enums/multiple-reprs.rs' | 265 | 'tests/ui/structs-enums/multiple-reprs.rs', |
| 266 | 'src/tools/jsondoclint', | ||
| 267 | 'src/tools/replace-version-placeholder', | ||
| 268 | 'tests/codegen/abi-efiapi.rs', | ||
| 269 | 'tests/codegen/abi-sysv64.rs', | ||
| 270 | 'tests/codegen/align-byval.rs', | ||
| 271 | 'tests/codegen/align-fn.rs', | ||
| 272 | 'tests/codegen/asm-powerpc-clobbers.rs', | ||
| 273 | 'tests/codegen/async-fn-debug-awaitee-field.rs', | ||
| 274 | 'tests/codegen/binary-search-index-no-bound-check.rs', | ||
| 275 | 'tests/codegen/call-metadata.rs', | ||
| 276 | 'tests/codegen/debug-column.rs', | ||
| 277 | 'tests/codegen/debug-limited.rs', | ||
| 278 | 'tests/codegen/debuginfo-generic-closure-env-names.rs', | ||
| 279 | 'tests/codegen/drop.rs', | ||
| 280 | 'tests/codegen/dst-vtable-align-nonzero.rs', | ||
| 281 | 'tests/codegen/enable-lto-unit-splitting.rs', | ||
| 282 | 'tests/codegen/enum/enum-u128.rs', | ||
| 283 | 'tests/codegen/fn-impl-trait-self.rs', | ||
| 284 | 'tests/codegen/inherit_overflow.rs', | ||
| 285 | 'tests/codegen/inline-function-args-debug-info.rs', | ||
| 286 | 'tests/codegen/intrinsics/mask.rs', | ||
| 287 | 'tests/codegen/intrinsics/transmute-niched.rs', | ||
| 288 | 'tests/codegen/issues/issue-73258.rs', | ||
| 289 | 'tests/codegen/issues/issue-75546.rs', | ||
| 290 | 'tests/codegen/issues/issue-77812.rs', | ||
| 291 | 'tests/codegen/issues/issue-98156-const-arg-temp-lifetime.rs', | ||
| 292 | 'tests/codegen/llvm-ident.rs', | ||
| 293 | 'tests/codegen/mainsubprogram.rs', | ||
| 294 | 'tests/codegen/move-operands.rs', | ||
| 295 | 'tests/codegen/repr/transparent-mips64.rs', | ||
| 296 | 'tests/mir-opt/', | ||
| 297 | 'tests/rustdoc-json', | ||
| 298 | 'tests/rustdoc-ui/doc-test-rustdoc-feature.rs', | ||
| 299 | 'tests/rustdoc-ui/no-run-flag.rs', | ||
| 300 | 'tests/ui-fulldeps/', | ||
| 301 | 'tests/ui/numbers-arithmetic/u128.rs' | ||
| 266 | ] | 302 | ] |
| 267 | 303 | ||
| 268 | exclude_fail_tests = " ".join([" --exclude " + item for item in exclude_list]) | 304 | exclude_fail_tests = " ".join([" --exclude " + item for item in exclude_list]) |
