Uh oh!
There was an error while loading. Please reload this page.
[mono][xunit tests] Move skipped tests out of rsp file - #2087
Conversation
stephentoub
commented
Jan 23, 2020
Thanks. What's the rhyme or reason for which lines were moved to be ActiveIssue and which ones weren't? |
Uh oh!
There was an error while loading. Please reload this page.
MaximLipnin
commented
Jan 24, 2020
I sent it as a draft with just several first tests moved in order to verify the general way. So I'm going to complete this work, at least for |
MaximLipnin
commented
Jan 24, 2020
Thank you for a quick look! |
07ec772 to
bc6dd61CompareMaximLipnin
commented
Jan 24, 2020
Given that the |
37a2154 to
7a0b55aCompareUh oh!
There was an error while loading. Please reload this page.
905511b to
092faedCompareUh oh!
There was an error while loading. Please reload this page.
3523e4b to
25119d3Compare…ibuteTests.StronglyTypedStructureTest
…ontainerTests.GetExportOfTTMetadataView1_TypeAsMetadataViewTypeArgument_IsUsedAsMetadataConstraint
…mblyLoadContext, out of rsp file
…s with no local failures from rsp file
…stentInDefaultContext and System.Runtime.Loader.Tests.DefaultLoadContextTests.LoadInDefaultContext from rsp file because the related issues should be addressed
…Tests.LoadNonExistentInDefaultContext and System.Runtime.Loader.Tests.DefaultLoadContextTests.LoadInDefaultContext because they fail on CI
… an active issues out of rsp file
…ow they behave on CI
08cf306 to
315a4c8CompareUh oh!
There was an error while loading. Please reload this page.
akoeplinger
left a comment
There was a problem hiding this comment.
Looks great! I found a few small nits that can be addressed in a follow-up PR.
| using Xunit; | ||
| [assembly: SkipOnMono("Flaky tests: https://github.com/mono/mono/issues/16417")] |
There was a problem hiding this comment.
should be
| [assembly:SkipOnMono("Flaky tests: https://github.com/mono/mono/issues/16417")] | |
| [assembly:ActiveIssue("Flaky tests: https://github.com/mono/mono/issues/16417",TestRuntimes.Mono)] |
There was a problem hiding this comment.
Attribute 'ActiveIssue' is not valid on this declaration type. It is only valid on 'class, method' declarations.
There was a problem hiding this comment.
Hm interesting. I don't see a good reason not to allow ActiveIssue on assembly, will file a PR in dotnet/arcade.
| namespace System.ComponentModel.Composition | ||
| { | ||
| // [ActiveIssue("https://github.com/mono/mono/issues/16417", TestRuntimes.Mono)] |
There was a problem hiding this comment.
commented code, can be removed
| // [ActiveIssue("https://github.com/mono/mono/issues/16417", TestRuntimes.Mono)] |
| #else | ||
| using nint = System.Int32; | ||
| using nuint = System.UInt32; | ||
| #endif |
There was a problem hiding this comment.
nint/nuint isn't used, can be removed.
Addresses #1980