[clr-ios] Add R2R and interpreter functional tests on iOS#122036
Merged
kotlarmilos merged 19 commits intodotnet:mainfrom Dec 5, 2025
Merged
[clr-ios] Add R2R and interpreter functional tests on iOS#122036kotlarmilos merged 19 commits intodotnet:mainfrom
kotlarmilos merged 19 commits intodotnet:mainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds two smoke functional tests for iOS CoreCLR: one for Ready-to-Run (R2R) and one for the interpreter. The changes include creating new test project files, a shared test program, and consolidating R2R configuration properties to make them reusable across Apple platform builds.
Key changes:
- New R2R and interpreter test projects in
src/tests/FunctionalTests/iOS/Device/CoreCLR/ - Consolidation of R2R properties (
PublishReadyToRunCompositeandPublishReadyToRunContainerFormat) frommono/sample/iOS/Program.csprojtoAppleBuild.propsfor reusability - Updated test project paths in
tests.projfrom Simulator to Device directory
Reviewed changes
Copilot reviewed 5 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| iOS.Simulator.CoreCLR.R2R.csproj | New R2R test project with PublishReadyToRun enabled and proper CrossGen2 imports |
| iOS.Simulator.CoreCLR.Interpreter.Test.csproj | Modified interpreter test project with environment variable removed |
| Program.cs | New simple smoke test program that returns exit code 42 |
| mono/sample/iOS/Program.csproj | R2R properties moved to AppleBuild.props for better reusability |
| AppleBuild.props | Added centralized R2R properties for CoreCLR on Apple platforms |
| tests.proj | Updated test paths from Simulator/CoreCLR.Interpreter to Device/CoreCLR |
You can also share your feedback on Copilot code review for a chance to win a $100 gift card. Take the survey.
10 tasks
This was referenced Dec 1, 2025
Open
Member
Author
|
This PR is ready for review - please take a look. |
Contributor
|
Tagging subscribers to 'os-ios': @vitek-karas, @kotlarmilos, @steveisok, @akoeplinger |
elinor-fung
reviewed
Dec 4, 2025
elinor-fung
reviewed
Dec 4, 2025
3 tasks
elinor-fung
approved these changes
Dec 4, 2025
Member
Author
|
/ba-g helix timeouts |
kotlarmilos
added a commit
that referenced
this pull request
Dec 8, 2025
) ## Description Targets in AppleBuild.InTree.targets were removed by mistake in #122036. This change restores them and fixes the performance jobs. Internal performance job: https://dev.azure.com/dnceng/internal/_build/results?buildId=2856228&view=results
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 adds two smoke functional tests - one for R2R and one for the interpreter.