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>
This commit is contained in:
Yash Shinde
2024-01-25 05:16:01 -08:00
committed by Richard Purdie
parent ac7375e02f
commit 30872876dc

View File

@@ -262,7 +262,43 @@ class RustSelfTestSystemEmulated(OESelftestTestCase, OEPTestResultTestCase):
'tests/ui/process/process-panic-after-fork.rs',
'tests/ui/process/process-sigpipe.rs',
'tests/ui/simd/target-feature-mixup.rs',
'tests/ui/structs-enums/multiple-reprs.rs'
'tests/ui/structs-enums/multiple-reprs.rs',
'src/tools/jsondoclint',
'src/tools/replace-version-placeholder',
'tests/codegen/abi-efiapi.rs',
'tests/codegen/abi-sysv64.rs',
'tests/codegen/align-byval.rs',
'tests/codegen/align-fn.rs',
'tests/codegen/asm-powerpc-clobbers.rs',
'tests/codegen/async-fn-debug-awaitee-field.rs',
'tests/codegen/binary-search-index-no-bound-check.rs',
'tests/codegen/call-metadata.rs',
'tests/codegen/debug-column.rs',
'tests/codegen/debug-limited.rs',
'tests/codegen/debuginfo-generic-closure-env-names.rs',
'tests/codegen/drop.rs',
'tests/codegen/dst-vtable-align-nonzero.rs',
'tests/codegen/enable-lto-unit-splitting.rs',
'tests/codegen/enum/enum-u128.rs',
'tests/codegen/fn-impl-trait-self.rs',
'tests/codegen/inherit_overflow.rs',
'tests/codegen/inline-function-args-debug-info.rs',
'tests/codegen/intrinsics/mask.rs',
'tests/codegen/intrinsics/transmute-niched.rs',
'tests/codegen/issues/issue-73258.rs',
'tests/codegen/issues/issue-75546.rs',
'tests/codegen/issues/issue-77812.rs',
'tests/codegen/issues/issue-98156-const-arg-temp-lifetime.rs',
'tests/codegen/llvm-ident.rs',
'tests/codegen/mainsubprogram.rs',
'tests/codegen/move-operands.rs',
'tests/codegen/repr/transparent-mips64.rs',
'tests/mir-opt/',
'tests/rustdoc-json',
'tests/rustdoc-ui/doc-test-rustdoc-feature.rs',
'tests/rustdoc-ui/no-run-flag.rs',
'tests/ui-fulldeps/',
'tests/ui/numbers-arithmetic/u128.rs'
]
exclude_fail_tests = " ".join([" --exclude " + item for item in exclude_list])