Skip to content

Commit

Permalink
[tests] Disable tests failing on runtime extra platforms (#77487)
Browse files Browse the repository at this point in the history
* [tests] Disable test running out of memory on Android x86

* [tests] Disable failing TestIcuAppLocal on windows

* Extend active issue for android

* Disable failing WasmTestOnBrowser test
  • Loading branch information
mdh1418 committed Oct 27, 2022
1 parent 8ddb0c4 commit 28f6daa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public class IcuAppLocalTests


[ConditionalFact(nameof(SupportsIcuPackageDownload))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/77485", TestPlatforms.Windows)]
public void TestIcuAppLocal()
{
// We define this switch dynamically during the runtime using RemoteExecutor.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1283,6 +1283,7 @@ public async Task LargeStatusLine_ThrowsException(int? maxResponseHeadersLength,

[Theory]
[MemberData(nameof(TripleBoolValues))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/77474", TestPlatforms.Android)]
public async Task LargeHeaders_TrickledOverTime_ProcessedEfficiently(bool trailingHeaders, bool async, bool lineFolds)
{
Memory<byte> responsePrefix = Encoding.ASCII.GetBytes(trailingHeaders
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public static void SyndicationFeed_CreateNewFeed()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/77526", TestPlatforms.Browser)]
public static void SyndicationFeed_Load_Write_RSS_Feed()
{
string path = Path.GetTempFileName();
Expand Down

0 comments on commit 28f6daa

Please sign in to comment.