- 
                Notifications
    
You must be signed in to change notification settings  - Fork 5.2k
 
Disable failing Apple mobile tests in extra-platforms #121292
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
Disable failing Apple mobile tests in extra-platforms #121292
Conversation
… and update HugeArray1 project file with tracking issue
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 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 | 
| 
           /azp run runtime-extra-platforms  | 
    
| 
          
Azure Pipelines successfully started running 1 pipeline(s). | 
    
| 
           /azp run runtime-extra-platforms  | 
    
| 
          
Azure Pipelines successfully started running 1 pipeline(s). | 
    
| 
           /ba-g Android queue timeouts dotnet/dnceng#3008  | 
    
Description
This PR adds platform-specific skip for iOS/tvOS in NamedPipeClientStream test and disables HugeArray1 with tracking issue.