Exclude badendfinally from Mono MiniFullAOT build to avoid missing AOT module crash#128137
Merged
Merged
Conversation
Contributor
|
Tagging subscribers to this area: @dotnet/runtime-infrastructure |
Co-authored-by: kotlarmilos <11523312+kotlarmilos@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix badendfinally AOT module loading issue in linux-x64
Exclude badendfinally from Mono MiniFullAOT build to avoid missing AOT module crash
May 13, 2026
Member
|
@copilot add tracking issue as a comment |
Co-authored-by: kotlarmilos <11523312+kotlarmilos@users.noreply.github.com>
Contributor
Author
BrzVlad
reviewed
May 13, 2026
kotlarmilos
reviewed
May 13, 2026
BrzVlad
approved these changes
May 13, 2026
This was referenced May 13, 2026
Open
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
MiniFullAOT runs were aborting in
aot-onlymode becauseJIT/Directed/coverage/importer/badendfinallywas scheduled without a generatedbadendfinally.dll.so. This change applies the existing AOT-incompatible test pattern so the project is not built for Monominifullaot.Change
/src/tests/JIT/Directed/coverage/importer/badendfinally.ilprojto disable project build when:RuntimeFlavor == monoRuntimeVariant == minifullaotEffect
badendfinally.dllfrom being included in MiniFullAOT payloads where its.sois absent, avoiding theFailed to load AOT module ... in aot-only modeabort path.Implementation