Disable failing Apple mobile tests in extra-platforms#121292
Merged
kotlarmilos merged 2 commits intodotnet:mainfrom Nov 4, 2025
Merged
Disable failing Apple mobile tests in extra-platforms#121292kotlarmilos merged 2 commits intodotnet:mainfrom
kotlarmilos merged 2 commits intodotnet:mainfrom
Conversation
… and update HugeArray1 project file with tracking issue
Contributor
There was a problem hiding this comment.
Pull Request Overview
This pull request adds platform-specific test exclusions to improve test reliability on iOS/tvOS and the Mono interpreter. The changes disable specific tests that fail due to platform limitations related to domain socket path lengths and a JIT test that doesn't work correctly under the Mono interpreter.
- Disables a JIT optimization test (HugeArray1) on Mono interpreter due to a known issue
- Skips a named pipe test on iOS/tvOS that exceeds domain socket path length limits
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| src/tests/JIT/jit64/opt/cse/HugeArray1.csproj | Disables project build for Mono interpreter runtime with tracking issue reference |
| src/libraries/System.IO.Pipes/tests/NamedPipeTests/NamedPipeTest.CreateClient.cs | Adds platform skip attribute for iOS/tvOS to avoid domain socket path length issue |
Member
Author
|
/azp run runtime-extra-platforms |
|
Azure Pipelines successfully started running 1 pipeline(s). |
This was referenced Nov 3, 2025
Open
akoeplinger
approved these changes
Nov 3, 2025
vitek-karas
approved these changes
Nov 3, 2025
Member
Author
|
/azp run runtime-extra-platforms |
|
Azure Pipelines successfully started running 1 pipeline(s). |
This was referenced Nov 3, 2025
Member
Author
|
/ba-g Android queue timeouts dotnet/dnceng#3008 |
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 platform-specific skip for iOS/tvOS in NamedPipeClientStream test and disables HugeArray1 with tracking issue.