-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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][ios] Enable fullAOT mode for runtime tests #92523
Closed
kotlarmilos
wants to merge
39
commits into
dotnet:main
from
kotlarmilos:feature/apple-mobile-runtime-tests-fullaot-mode
Closed
[mono][ios] Enable fullAOT mode for runtime tests #92523
kotlarmilos
wants to merge
39
commits into
dotnet:main
from
kotlarmilos:feature/apple-mobile-runtime-tests-fullaot-mode
Conversation
This file contains 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
Tagging subscribers to this area: @directhex Issue DetailsWork in progress. This PR aims to enable fullAOT mode for runtime tests.
|
/azp run runtime-ioslike |
Azure Pipelines successfully started running 1 pipeline(s). |
This was referenced Sep 23, 2023
/azp run runtime-ioslike |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run runtime-ioslike |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run runtime-ioslike |
Azure Pipelines successfully started running 1 pipeline(s). |
This was referenced Sep 25, 2023
/azp run runtime-ioslike |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run runtime-ioslike |
ghost
closed this
Jan 28, 2024
This commit adds Xunit runtime tests for Apple mobile platforms. There are two groups of runtime tests: Xunit and legacy. Legacy tests expose the main method and cannot be run with AppleTestRunner. The Xunit tests are executed with AppleTestRunner. In both cases, it is necessary to pass a list of assemblies to run. Tests that are not part of any merged testing groups are grouped by subcategories and bundled together.
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.
Work in progress.
Description
This PR aims to enable fullAOT mode for runtime tests. Additionally, it should reduce the build time by enabling
/p:EnableAggressiveTrimming=true
and avoid generating Xcode project. To run runtime tests locally, follow the steps below.Tasks