Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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,6 +290,7 @@ 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,6 +654,7 @@ 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,6 +52,7 @@ 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 @@ -82,6 +83,7 @@ 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
1 change: 0 additions & 1 deletion src/libraries/tests.proj
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Globalization.Calendars\tests\CalendarTestWithConfigSwitch\System.Globalization.CalendarsWithConfigSwitch.Tests.csproj" />

<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.IO.FileSystem\tests\System.IO.FileSystem.Tests.csproj" />
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Linq.Expressions\tests\System.Linq.Expressions.Tests.csproj" />
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Linq.Parallel\tests\System.Linq.Parallel.Tests.csproj" />
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Net.Http\tests\FunctionalTests\System.Net.Http.Functional.Tests.csproj" />
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Net.Primitives\tests\FunctionalTests\System.Net.Primitives.Functional.Tests.csproj" />
Expand Down