Re-enable MacCatalyst IO tests disabled by issue 114403#131206
Draft
kotlarmilos with Copilot wants to merge 2 commits into
Draft
Re-enable MacCatalyst IO tests disabled by issue 114403#131206kotlarmilos with Copilot wants to merge 2 commits into
kotlarmilos with Copilot wants to merge 2 commits into
Conversation
|
Azure Pipelines: 16 pipeline(s) were filtered out due to trigger conditions. There may be pipelines that require an authorized user to comment /azp run to run. |
Contributor
|
Tagging subscribers to this area: @dotnet/runtime-infrastructure |
Co-authored-by: kotlarmilos <11523312+kotlarmilos@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix IO test compatibility issues on MacCatalyst CI with macOS 14
Re-enable MacCatalyst IO tests disabled by issue 114403
Jul 22, 2026
Member
|
/azp run runtime-ioslike |
|
Azure Pipelines: Successfully started running 1 pipeline(s). |
This was referenced Jul 22, 2026
Open
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The macOS 12 → 14 CI queue migration surfaced MacCatalyst permission issues (Documents-folder pop-up in IsolatedStorage,
ReadExecuteSIGKILL in MemoryMappedFiles), which caused several IO tests to be disabled under issue 114403. This re-enables them so the macOS 14 queue can validate whether the issues persist.Description
System.IO.IsolatedStorage/tests/.../RemoveTests.cs— Removed the four[ActiveIssue(114403, IsMacCatalyst)]attributes onRemoveUserStoreForApplication,RemoveUserStoreForAssembly,RemoveUserStoreForDomain, andRemoveStoreWithContent.System.IO.MemoryMappedFiles/tests/MemoryMappedViewAccessor.Tests.csandMemoryMappedViewStream.Tests.cs— Dropped thePlatformDetection.IsNotMacCatalystguard so theReadExecute/ReadExecutecombination is exercised again on MacCatalyst:PlatformDetectionremains referenced elsewhere in both MemoryMappedFiles test files. These are test-only changes; the MacCatalyst CI legs are the actual signal for whether the underlying permission/signature issues are resolved.