Skip to content

Commit b37be3a

Browse files
jkotasstephentoub
authored andcommitted
Reenable tests for fixed ProjectN bug (dotnet/corefx#30467)
The bug has been fixed in ProjectN 3 years ago. Fixes dotnet/corefx#16747 Fixes dotnet/corefx#21198 Commit migrated from dotnet/corefx@7303e22
1 parent 3b7dacc commit b37be3a

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

src/libraries/System.Dynamic.Runtime/tests/Dynamic.Context/Conformance.dynamic.context.indexer.genclass.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,6 @@ public class Test
827827
private static int s_num = 0;
828828

829829
[Fact]
830-
[ActiveIssue(16747)]
831830
public static void DynamicCSharpRunTest()
832831
{
833832
Assert.Equal(0, MainMethod());

src/libraries/System.Linq.Expressions/tests/Lambda/LambdaTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ public void Lambda(bool useInterpreter)
5555
Assert.Equal("(i, j, k, l) => i", lambda.ToString());
5656
}
5757

58-
// Possible issue with AOT? See https://github.com/dotnet/corefx/pull/8116/files#r61346743
59-
[Theory(Skip = "870811"), ClassData(typeof(CompilationTypes))]
58+
[Theory, ClassData(typeof(CompilationTypes))]
59+
[ActiveIssue(30471)]
6060
public void InvokeComputedLambda(bool useInterpreter)
6161
{
6262
ParameterExpression x = Expression.Parameter(typeof(int), "x");

src/libraries/System.Linq.Expressions/tests/SequenceTests/SequenceTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ public class AndAlso
642642
public override string ToString() { return value.ToString(); }
643643
}
644644

645-
[Theory(Skip = "870811")]
645+
[Theory]
646646
[ClassData(typeof(CompilationTypes))]
647647
public static void TestAndAlso(bool useInterpreter)
648648
{
@@ -967,7 +967,7 @@ private class AnonHelperClass1
967967
public AnonHelperClass1(Expression<Func<decimal>> mem1) { this.mem1 = mem1; }
968968
}
969969

970-
[Theory(Skip = "870811")]
970+
[Theory]
971971
[ClassData(typeof(CompilationTypes))]
972972
public static void NewExpressionwithMemberAssignInit(bool useInterpreter)
973973
{
@@ -1834,7 +1834,7 @@ public static void StaticMethodCall(bool useInterpreter)
18341834
Assert.Equal(4, d(3, 4));
18351835
}
18361836

1837-
[Theory(Skip = "870811")]
1837+
[Theory]
18381838
[ClassData(typeof(CompilationTypes))]
18391839
public static void CallOnCapturedInstance(bool useInterpreter)
18401840
{
@@ -1900,7 +1900,7 @@ public static void ArrayInitializedWithLiterals(bool useInterpreter)
19001900
Assert.Equal(5, v.Length);
19011901
}
19021902

1903-
[Theory(Skip = "870811")]
1903+
[Theory]
19041904
[ClassData(typeof(CompilationTypes))]
19051905
public static void ArrayInitializedWithCapturedInstance(bool useInterpreter)
19061906
{

0 commit comments

Comments
 (0)