Skip to content

Commit

Permalink
[wasm] Re-enable some System.Linq.Expressions tests (dotnet#40130)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximLipnin authored and Jacksondr5 committed Aug 10, 2020
1 parent 3f35198 commit 99c87a8
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,6 @@ public static IEnumerable<object[]> Call_NoParameters_TestData()

[Theory]
[PerCompilationType(nameof(Call_NoParameters_TestData))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/39771", TestPlatforms.Browser)]
public static void Call_NoParameters(Expression instance, MethodInfo method, object expected, bool useInterpreter)
{
Expression call = Expression.Call(instance, method);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,6 @@ public void UnreadableIndex()


[Theory, ClassData(typeof(CompilationTypes))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/39771", TestPlatforms.Browser)]
public static void ConstrainedVirtualCall(bool useInterpreter)
{
// Virtual call via base declaration to valuetype.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ public void IRuntimeVariablesListChecksBounds(bool useInterpreter)

[Theory]
[ClassData(typeof(CompilationTypes))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/39771", TestPlatforms.Browser)]
public void ReadAndWriteVars(bool useInterpreter)
{
ParameterExpression x = Expression.Variable(typeof(int));
Expand Down Expand Up @@ -83,7 +82,6 @@ public void ReadAndWriteVars(bool useInterpreter)

[Theory]
[ClassData(typeof(CompilationTypes))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/39771", TestPlatforms.Browser)]
public void AliasingAllowed(bool useInterpreter)
{
ParameterExpression x = Expression.Variable(typeof(int));
Expand Down

0 comments on commit 99c87a8

Please sign in to comment.