Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
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 @@ -827,7 +827,6 @@ public class Test
private static int s_num = 0;

[Fact]
[ActiveIssue(16747)]
public static void DynamicCSharpRunTest()
{
Assert.Equal(0, MainMethod());
Expand Down
4 changes: 2 additions & 2 deletions src/System.Linq.Expressions/tests/Lambda/LambdaTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ public void Lambda(bool useInterpreter)
Assert.Equal("(i, j, k, l) => i", lambda.ToString());
}

// Possible issue with AOT? See https://github.com/dotnet/corefx/pull/8116/files#r61346743
[Theory(Skip = "870811"), ClassData(typeof(CompilationTypes))]
[Theory, ClassData(typeof(CompilationTypes))]
[ActiveIssue(30471)]
public void InvokeComputedLambda(bool useInterpreter)
{
ParameterExpression x = Expression.Parameter(typeof(int), "x");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ public class AndAlso
public override string ToString() { return value.ToString(); }
}

[Theory(Skip = "870811")]
[Theory]
[ClassData(typeof(CompilationTypes))]
public static void TestAndAlso(bool useInterpreter)
{
Expand Down Expand Up @@ -967,7 +967,7 @@ private class AnonHelperClass1
public AnonHelperClass1(Expression<Func<decimal>> mem1) { this.mem1 = mem1; }
}

[Theory(Skip = "870811")]
[Theory]
[ClassData(typeof(CompilationTypes))]
public static void NewExpressionwithMemberAssignInit(bool useInterpreter)
{
Expand Down Expand Up @@ -1834,7 +1834,7 @@ public static void StaticMethodCall(bool useInterpreter)
Assert.Equal(4, d(3, 4));
}

[Theory(Skip = "870811")]
[Theory]
[ClassData(typeof(CompilationTypes))]
public static void CallOnCapturedInstance(bool useInterpreter)
{
Expand Down Expand Up @@ -1900,7 +1900,7 @@ public static void ArrayInitializedWithLiterals(bool useInterpreter)
Assert.Equal(5, v.Length);
}

[Theory(Skip = "870811")]
[Theory]
[ClassData(typeof(CompilationTypes))]
public static void ArrayInitializedWithCapturedInstance(bool useInterpreter)
{
Expand Down