-
Notifications
You must be signed in to change notification settings - Fork 5.2k
[mono] Disable failing tests on Mono AOT linux-x64 #120669
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[mono] Disable failing tests on Mono AOT linux-x64 #120669
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR disables tests that are failing on Mono FullAOT linux-x64 to prevent CI failures from known issues that are not new regressions. The changes add ActiveIssue attributes and project-level disable flags to exclude problematic tests from running on Mono runtime.
Key changes:
- Adds ActiveIssue attributes to failing test methods to skip them temporarily
- Disables entire test projects that are incompatible with Mono runtime
- References tracking issues for the underlying problems
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
File | Description |
---|---|
src/tests/Regressions/coreclr/GitHub_76531/test76531.csproj | Disables project build for Mono runtime |
src/tests/Loader/classloader/explicitlayout/objrefandnonobjrefoverlap/case13.cs | Adds ActiveIssue attribute to skip failing test method |
src/tests/Loader/classloader/ExtendedLayout/ExtendedLayoutTypes.ilproj | Marks project as Mono AOT incompatible and disables build for Mono |
src/tests/JIT/Regression/JitBlue/Runtime_101731/Runtime_101731.cs | Adds ActiveIssue attributes to multiple failing test methods |
/azp run runtime-extra-platforms |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run runtime-extra-platforms |
Azure Pipelines successfully started running 1 pipeline(s). |
src/tests/JIT/Regression/JitBlue/Runtime_101731/Runtime_101731.cs
Outdated
Show resolved
Hide resolved
/azp run runtime-extra-platforms |
Azure Pipelines successfully started running 1 pipeline(s). |
Description
This PR disables tests that are failing on Mono FullAOT linux-x64. These are known issues and not new regressions.