Skip to content

Commit 7acaf16

Browse files
authored
[wasm] Re-enable some System.Linq.Expressions tests (#40130)
1 parent 8d22d2c commit 7acaf16

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

src/libraries/System.Linq.Expressions/tests/Call/CallTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,6 @@ public static IEnumerable<object[]> Call_NoParameters_TestData()
290290

291291
[Theory]
292292
[PerCompilationType(nameof(Call_NoParameters_TestData))]
293-
[ActiveIssue("https://github.com/dotnet/runtime/issues/39771", TestPlatforms.Browser)]
294293
public static void Call_NoParameters(Expression instance, MethodInfo method, object expected, bool useInterpreter)
295294
{
296295
Expression call = Expression.Call(instance, method);

src/libraries/System.Linq.Expressions/tests/IndexExpression/IndexExpressionTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,6 @@ public void UnreadableIndex()
654654

655655

656656
[Theory, ClassData(typeof(CompilationTypes))]
657-
[ActiveIssue("https://github.com/dotnet/runtime/issues/39771", TestPlatforms.Browser)]
658657
public static void ConstrainedVirtualCall(bool useInterpreter)
659658
{
660659
// Virtual call via base declaration to valuetype.

src/libraries/System.Linq.Expressions/tests/Variables/RuntimeVariablesTests.cs

-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ public void IRuntimeVariablesListChecksBounds(bool useInterpreter)
5252

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

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

0 commit comments

Comments
 (0)