Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
Disable 4 AsyncTaskMethodBuilder tests due to a codegen optimization …
Browse files Browse the repository at this point in the history
…issue. (#21002)
  • Loading branch information
AntonLapounov authored and stephentoub committed Jun 13, 2017
1 parent c58e53e commit b4d106a
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,7 @@ public static void TaskMethodBuilderT_TaskIsCached()
}

[Fact]
[ActiveIssue("TFS 450361 - Codegen optimization issue", TargetFrameworkMonikers.UapAot)]
public static void TaskMethodBuilder_UsesCompletedCache()
{
var atmb1 = new AsyncTaskMethodBuilder();
Expand All @@ -357,6 +358,7 @@ public static void TaskMethodBuilder_UsesCompletedCache()
[Theory]
[InlineData(true)]
[InlineData(false)]
[ActiveIssue("TFS 450361 - Codegen optimization issue", TargetFrameworkMonikers.UapAot)]
public static void TaskMethodBuilderBoolean_UsesCompletedCache(bool result)
{
TaskMethodBuilderT_UsesCompletedCache(result, true);
Expand All @@ -367,6 +369,7 @@ public static void TaskMethodBuilderBoolean_UsesCompletedCache(bool result)
[InlineData(5, true)]
[InlineData(-5, false)]
[InlineData(42, false)]
[ActiveIssue("TFS 450361 - Codegen optimization issue", TargetFrameworkMonikers.UapAot)]
public static void TaskMethodBuilderInt32_UsesCompletedCache(int result, bool shouldBeCached)
{
TaskMethodBuilderT_UsesCompletedCache(result, shouldBeCached);
Expand All @@ -375,6 +378,7 @@ public static void TaskMethodBuilderInt32_UsesCompletedCache(int result, bool sh
[Theory]
[InlineData((string)null, true)]
[InlineData("test", false)]
[ActiveIssue("TFS 450361 - Codegen optimization issue", TargetFrameworkMonikers.UapAot)]
public static void TaskMethodBuilderRef_UsesCompletedCache(string result, bool shouldBeCached)
{
TaskMethodBuilderT_UsesCompletedCache(result, shouldBeCached);
Expand Down

0 comments on commit b4d106a

Please sign in to comment.