[ios-clr] Remove stale ActiveIssue attributes for tests passing on Apple mobile CoreCLR#127063
Draft
kotlarmilos wants to merge 1 commit intodotnet:mainfrom
Draft
[ios-clr] Remove stale ActiveIssue attributes for tests passing on Apple mobile CoreCLR#127063kotlarmilos wants to merge 1 commit intodotnet:mainfrom
kotlarmilos wants to merge 1 commit intodotnet:mainfrom
Conversation
…ple mobile CoreCLR These tests pass on Apple mobile CoreCLR after the other dotnet#125439 split fixes. Drop the now-unnecessary ActiveIssue attributes and clean up tests.proj exclusions whose root causes have been resolved. Narrow the System.Numerics.Tensors.Tests exclusion to x64 where the remaining failure is reproducible. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Removes no-longer-needed Apple mobile CoreCLR test skips/exclusions now that underlying failures have been fixed as part of the #125439 split work, and narrows one remaining exclusion to x64-only.
Changes:
- Removed stale
ActiveIssueattributes gating individual tests on Apple mobile CoreCLR. - Removed several Apple mobile CoreCLR
tests.projproject exclusions that are no longer necessary. - Narrowed the
System.Numerics.Tensors.Testsexclusion toTargetArchitecture == x64for the remaining failure scenario.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| src/libraries/System.Collections/tests/BitArray/BitArray_CtorTests.cs | Removes Apple mobile CoreCLR ActiveIssue from Clone_LongLength_Works. |
| src/libraries/System.Numerics.Tensors/tests/TensorPrimitives.Generic.cs | Removes Apple mobile CoreCLR ActiveIssue from a theory data-driven test. |
| src/libraries/System.Runtime/tests/System.Globalization.Calendars.Tests/CalendarTestWithConfigSwitch/CalendarTests.cs | Removes Apple mobile CoreCLR ActiveIssue from TestJapaneseCalendarDateParsing. |
| src/libraries/System.Runtime/tests/System.Runtime.Tests/System/ExceptionTests.cs | Removes Apple mobile CoreCLR ActiveIssue from two stack/target-site related tests. |
| src/libraries/tests.proj | Drops multiple Apple mobile CoreCLR exclusions and gates System.Numerics.Tensors.Tests exclusion to x64 only. |
Contributor
|
Tagging subscribers to 'os-ios': @vitek-karas, @kotlarmilos, @steveisok, @akoeplinger |
Member
Author
|
/azp run runtime-ioslike |
|
Azure Pipelines successfully started running 1 pipeline(s). |
jkotas
approved these changes
Apr 17, 2026
This was referenced Apr 17, 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.
Description
Test if
ActiveIssuecan be removed from System.Runtime tests. Also clean uptests.projexclusions.