Skip to content
Prev Previous commit
Link to specific issues
  • Loading branch information
simonrozsival authored and github-actions committed Aug 19, 2022
commit e5434c6c29dbccf1094fd7fd2ee616b7f68835ff
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ private static void CreateAndLoadConfigFile(string filename)

[Fact]
[SkipOnPlatform(TestPlatforms.Browser, "Not supported on Browser")]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74076", TestPlatforms.tvOS)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74244", TestPlatforms.tvOS)]
public void RuntimeFilterChange()
{
CreateAndLoadConfigFile("testhost_ConfigWithRuntime.config");
Expand Down Expand Up @@ -96,7 +96,7 @@ public void RuntimeFilterChange()

[Fact]
[SkipOnPlatform(TestPlatforms.Browser, "Not supported on Browser")]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74076", TestPlatforms.tvOS)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74244", TestPlatforms.tvOS)]
public void Refresh_RemoveSwitch()
{
// Use a SourceSwitch that logs Error.
Expand Down Expand Up @@ -137,7 +137,7 @@ void Log()

[Fact]
[SkipOnPlatform(TestPlatforms.Browser, "Not supported on Browser")]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74076", TestPlatforms.tvOS)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74244", TestPlatforms.tvOS)]
public void Refresh_ChangeSwitch()
{
// Use a SourceSwitch that logs Error.
Expand All @@ -163,7 +163,7 @@ public void Refresh_ChangeSwitch()

[Fact]
[SkipOnPlatform(TestPlatforms.Browser, "Not supported on Browser")]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74076", TestPlatforms.tvOS)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74244", TestPlatforms.tvOS)]
public void Refresh_RemoveSource()
{
// Use a SourceSwitch that logs Error.
Expand Down Expand Up @@ -197,7 +197,7 @@ public void Refresh_RemoveSource()

[Fact]
[SkipOnPlatform(TestPlatforms.Browser, "Not supported on Browser")]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74076", TestPlatforms.tvOS)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74244", TestPlatforms.tvOS)]
public void ConfigWithEvents_RuntimeListener()
{
CreateAndLoadConfigFile("testhost_ConfigWithRuntime.config");
Expand Down Expand Up @@ -264,7 +264,7 @@ private void SubscribeToSwitch_Initializing(object? sender, InitializingSwitchEv

[Fact]
[SkipOnPlatform(TestPlatforms.Browser, "Not supported on Browser")]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74076", TestPlatforms.tvOS)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74244", TestPlatforms.tvOS)]
public void AllTypes()
{
CreateAndLoadConfigFile("testhost_AllTypes.config");
Expand Down Expand Up @@ -309,7 +309,7 @@ public void AllTypes()

[Fact]
[SkipOnPlatform(TestPlatforms.Browser, "Not supported on Browser")]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74076", TestPlatforms.tvOS)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74244", TestPlatforms.tvOS)]
public void Switch_MissingValue_Throws()
{
Exception e = Assert.Throws<ConfigurationErrorsException>(() =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public static void Xml_ListRoot()
// horizon that it's not worth the trouble.
#if !XMLSERIALIZERGENERATORTESTS
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74076", TestPlatforms.tvOS)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74247", TestPlatforms.tvOS)]
public static void Xml_ReadOnlyCollection()
{
ReadOnlyCollection<string> roc = new ReadOnlyCollection<string>(new string[] { "one", "two" });
Expand All @@ -225,7 +225,7 @@ public static void Xml_ReadOnlyCollection()

[Theory]
[MemberData(nameof(Xml_ImmutableCollections_MemberData))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74076", TestPlatforms.tvOS)]
[ActiveIssue("https://github.com/dotnet/runtime/issues/74247", TestPlatforms.tvOS)]
public static void Xml_ImmutableCollections(Type type, object collection, Type createException, Type addException, string expectedXml, string exMsg = null)
{
XmlSerializer serializer;
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/tests.proj
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Net.Quic/tests/FunctionalTests/System.Net.Quic.Functional.Tests.csproj" />
<!-- https://github.com/dotnet/runtime/issues/51414 -->
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Security.Cryptography.OpenSsl/tests/System.Security.Cryptography.OpenSsl.Tests.csproj" />
<!-- https://github.com/dotnet/runtime/issues/74076 -->
<!-- https://github.com/dotnet/runtime/issues/74245 -->
<ProjectExclusions Include="$(RepoRoot)/src/tests/FunctionalTests/iOS/Simulator/XmlSerializer_Deserialize/iOS.Simulator.XmlSerializer_Deserialize.Test.csproj" />
<!-- App Crash https://github.com/dotnet/runtime/issues/53624 -->
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Net.Requests/tests/System.Net.Requests.Tests.csproj" />
Expand Down