-
Notifications
You must be signed in to change notification settings - Fork 5k
[Android] Run CoreCLR library tests on Android #114148
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
[Android] Run CoreCLR library tests on Android #114148
Conversation
/azp run runtime-extra-platforms |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run runtime-android,runtime-androidemulator |
Azure Pipelines successfully started running 2 pipeline(s). |
/azp run runtime-android,runtime-androidemulator |
Azure Pipelines successfully started running 2 pipeline(s). |
/azp run runtime-android,runtime-androidemulator |
Azure Pipelines successfully started running 2 pipeline(s). |
This PR is ready to be merged. /cc: @steveisok Build machines run out of disk space without symbol stripping. Enabling symbol stripping makes the app non-debuggable and breaks |
/azp run runtime-android,runtime-androidemulator |
Azure Pipelines successfully started running 2 pipeline(s). |
/azp run runtime-android,runtime-androidemulator |
Azure Pipelines successfully started running 2 pipeline(s). |
/azp run runtime-android,runtime-androidemulator |
Azure Pipelines successfully started running 2 pipeline(s). |
* Enable running library tests * Add jobs to extra-platforms * Fix System.Runtime tests * Fix arm64 android coreclr tests * Add TestUtilities project reference * Add support for local android test execution on windows * Disable failing tests on Android devices * Disable failing tests on Android devices * Disable failing tests * Remove unnecessary using System directive * Disable failing tests * Disable failing tests * Fix typo * Disable failing tests * Disable ConfigSwitchIsHonored test * Disable failing tests * Fix typo * Enable System.Runtime.Loader.Tests tests * Enable System.Text.RegularExpressions tests * Disable failing tests * Try run disabled tests * Fix build * Disable failing tests * Enable tests that are passing * Fix typo * Fix ActiveIssue annotation * Disable failing tests * Add comment * Disable failing tests * Fix test annotations * Update ProjectExclusions tracking issue * Disable failing tests on Android platform * Skip MutexTests on CoreCLR Android * Disable tests on CoreCLR Android * Fix ActiveIssue annotation * Disable failing tests * Disable failing tests * Exclude System.Net.Security.Tests from project builds * Exclude System.Net.Security.Tests from project builds * Disable CoreCLR tests on Mono * Disable System.Net.WebSockets.Tests due to disk space limitation * Exclude debug symbols * Update StripDebugSymbols property * Disable failing tests * Fix build * Disable tests * Disable failing tests * Test run * Use Debug config to ensure android:debuggable=true * Fix StripDebugSymbols * Fix formatting * Test run --------- Co-authored-by: Steve Pfister <stpfiste@microsoft.com>
Description
This PR enables running CoreCLR library tests on the Android emulators and devices and adds a script for local testing on Windows.
Changes
Disabled tests fall into two categories.
Globalization or other mobile‐platform issues
These tests have been disabled because they depend on invariant‐culture behaviors or platform APIs that aren’t fully supported on mobile targets:
CoreCLR Android-specific failures
The following disabled tests are specific to CoreCLR Android:
Closes #50871 #50874 #50923 #49937 #114148