Uh oh!
There was an error while loading. Please reload this page.
[iOS][libraries] Skip failing iOS tests with ActiveIssues and proj level skips - #51491
Conversation
ghost
commented
Apr 19, 2021
I couldn't figure out the best area label to add to this PR. If you have write-permissions please help me learn by adding exactly one area label. |
521b003 to
bfa8f8aComparemarek-safar
commented
Apr 30, 2021
Which are they? |
mdh1418
commented
Apr 30, 2021
@marek-safar So far the PNSE failure test suites being completely skipped are There are some test facts that fail with PNSE that are skipped individually, I'll need to ensure that they're being tracked/marked with some note of PNSE. |
marek-safar
commented
Apr 30, 2021
Out of these 4 I think only |
c144b51 to
05a9946Comparetqiu8
commented
Apr 30, 2021
On my local machine |
mdh1418
commented
May 3, 2021
mdh1418
commented
May 3, 2021
@marek-safar Of all the previous CI runs of iOS and tvOS, the following suites have the following number of methods that fail with PNSE. Should |
tqiu8
commented
May 3, 2021
marek-safar
commented
May 3, 2021
Preferably not |
2387efb to
0da7e61Compare…m.Net.NameResolution.Unit test suite skips
This reverts commit 163ff12da16e602e52830c79f267e14c420284c0.
…ng on CI but passes locally
…on CI but passes locally
…Algorithms test exclusions
There was a problem hiding this comment.
Yup sounds good, but we'll still go ahead and merge this PR for now to get to a green state in runtime-staging :)
In effort to assess the state of the iOS library tests, a number of tests will be skipped
Test suites that crash, hang, or have a significant number of failures (mostly 20+ failing unique test methods) are skipped on at the
tests.projlevel. Otherwise,[ActiveIssue]attributes have been attached to either the individual test methods that fail or the entire class if the whole test class fails. Any pre-existingActiveIssueattribute associated with iOS had been reassessed to either remain or be closed.A few test suites have been skipped because they fail with some form of
PlatformNotSupportedException.[SkipOnPlatform]attributes are attached to the failing test methods.All of the Issues can be tracked at https://github.com/dotnet/runtime/projects/48#column-9236436
The ActiveIssues and
tests.projexclusions have been tested on #49917 as well.This PR makes the following changes in the following files:
src/libraries/System.IO.Ports/tests/System.IO.Ports.Tests.csproj- Removed$(NetCoreAppCurrent)-iOSfrom target frameworks as it is stated to currently only supported on Windows.src/libraries/tests.proj- Update the test suites that need to be skipped at the project level, reducing the number and categorizing as a skip due to PNSE, a skip due to numerous failures, and a skip due to the suite crashing.The remaining files changed are either:
[ActiveIssue("<issue-url>", TestPlatforms.iOS | TestPlatforms.tvOS | TestPlatforms.MacCatalyst)][SkipOnPlatform(TestPlatforms.iOS | TestPlatforms.tvOS, "Not supported on iOS or tvOS.")]