[mono] Disable failing tests on Mono AOT linux-x64#120669
Merged
kotlarmilos merged 8 commits intodotnet:mainfrom Oct 14, 2025
Merged
[mono] Disable failing tests on Mono AOT linux-x64#120669kotlarmilos merged 8 commits intodotnet:mainfrom
kotlarmilos merged 8 commits intodotnet:mainfrom
Conversation
Contributor
There was a problem hiding this comment.
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 |
Member
Author
|
/azp run runtime-extra-platforms |
|
Azure Pipelines successfully started running 1 pipeline(s). |
matouskozak
approved these changes
Oct 13, 2025
Member
Author
|
/azp run runtime-extra-platforms |
|
Azure Pipelines successfully started running 1 pipeline(s). |
jkotas
reviewed
Oct 13, 2025
src/tests/JIT/Regression/JitBlue/Runtime_101731/Runtime_101731.cs
Outdated
Show resolved
Hide resolved
Member
Author
|
/azp run runtime-extra-platforms |
|
Azure Pipelines successfully started running 1 pipeline(s). |
This was referenced Oct 13, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR disables tests that are failing on Mono FullAOT linux-x64. These are known issues and not new regressions.