Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[wasm] Re-enable some System.Linq.Expressions tests #40130

Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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