-
Notifications
You must be signed in to change notification settings - Fork 5.1k
[Android] Reenable SocketsHttpHandlerTest.LargeHeaders_TrickledOverTime_ProcessedEfficiently on 64-bit Android #117710
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
base: main
Are you sure you want to change the base?
[Android] Reenable SocketsHttpHandlerTest.LargeHeaders_TrickledOverTime_ProcessedEfficiently on 64-bit Android #117710
Conversation
/azp run runtime-extra-platrofms |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR re-enables a previously disabled test on 64-bit Android platforms while keeping it disabled on 32-bit Android where it causes out-of-memory issues. The change replaces a blanket test exclusion for all Android platforms with a more targeted approach that only skips the test on 32-bit Android architectures.
- Replaced
[ActiveIssue]
attribute with runtime platform detection - Added conditional skip logic for 32-bit Android processes only
- Changed from
[Theory]
to[ConditionalTheory]
to support runtime test skipping
src/libraries/System.Net.Http/tests/FunctionalTests/SocketsHttpHandlerTest.cs
Outdated
Show resolved
Hide resolved
No pipelines are associated with this pull request. |
…pHandlerTest.cs Co-authored-by: Copilot <[email protected]>
/azp run runtime-extra-platforms |
Azure Pipelines successfully started running 1 pipeline(s). |
src/libraries/System.Net.Http/tests/FunctionalTests/SocketsHttpHandlerTest.cs
Outdated
Show resolved
Hide resolved
…pHandlerTest.cs Co-authored-by: Alexander Köplinger <[email protected]>
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
/azp run runtime-extra-platforms |
Azure Pipelines successfully started running 1 pipeline(s). |
Closes #77474
The test is known to run out of memory on 32-bit Android. We should still run the test on 64-bit Android which most commonly used by end customers.