Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Urban <bernhard.urban@xamarin.com>2017-12-14 02:52:49 +0300
committerGitHub <noreply@github.com>2017-12-14 02:52:49 +0300
commit746a3d021443dc21d9dfec7ff8c4153fe947fff8 (patch)
tree077d72b9538eacb2dfdb4f90c7f0c53f333b1acd /mcs/class/System.Core
parentf9287857f227bc5f3504d02b5ea325c525b03a44 (diff)
[corlib] rename NotWorkingInterpreter and InterpreterNotWorking categories (#6225)
Diffstat (limited to 'mcs/class/System.Core')
-rw-r--r--mcs/class/System.Core/Makefile2
-rw-r--r--mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Call.cs2
-rw-r--r--mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Equal.cs2
-rw-r--r--mcs/class/System.Core/Test/System.Linq/EnumerableAsQueryableTest.cs2
4 files changed, 4 insertions, 4 deletions
diff --git a/mcs/class/System.Core/Makefile b/mcs/class/System.Core/Makefile
index 566c5fb5790..d0c6453a990 100644
--- a/mcs/class/System.Core/Makefile
+++ b/mcs/class/System.Core/Makefile
@@ -25,7 +25,7 @@ LIB_MCS_FLAGS += -d:NET_3_5
endif
ifdef AOT_FRIENDLY_PROFILE
-extra_test_flags := -exclude:NotWorkingInterpreter
+extra_test_flags := -exclude:NotWorkingLinqInterpreter
LIB_MCS_FLAGS += -d:NO_FEATURE_STATIC_DELEGATE,FEATURE_MAKE_RUN_METHODS
else
LIB_MCS_FLAGS += -d:FEATURE_COMPILE,FEATURE_COMPILE_TO_METHODBUILDER,FEATURE_PDB_GENERATOR
diff --git a/mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Call.cs b/mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Call.cs
index 7757ca9d881..6a01d8f3426 100644
--- a/mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Call.cs
+++ b/mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Call.cs
@@ -403,7 +403,7 @@ namespace MonoTests.System.Linq.Expressions {
[Test]
[Category ("NotDotNet")] // https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=319190
- [Category ("NotWorkingInterpreter")]
+ [Category ("NotWorkingLinqInterpreter")]
public void Connect319190 ()
{
var lambda = Expression.Lambda<Func<bool>> (
diff --git a/mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Equal.cs b/mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Equal.cs
index d483cf778b6..105ec20027d 100644
--- a/mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Equal.cs
+++ b/mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Equal.cs
@@ -472,7 +472,7 @@ namespace MonoTests.System.Linq.Expressions
}
[Test]
- [Category ("NotWorkingInterpreter")]
+ [Category ("NotWorkingLinqInterpreter")]
public void NullableNullEqual ()
{
var param = Expression.Parameter (typeof (DateTime?), "x");
diff --git a/mcs/class/System.Core/Test/System.Linq/EnumerableAsQueryableTest.cs b/mcs/class/System.Core/Test/System.Linq/EnumerableAsQueryableTest.cs
index 7269f376c2b..aee3bff9ee3 100644
--- a/mcs/class/System.Core/Test/System.Linq/EnumerableAsQueryableTest.cs
+++ b/mcs/class/System.Core/Test/System.Linq/EnumerableAsQueryableTest.cs
@@ -324,7 +324,7 @@ namespace MonoTests.System.Linq {
}
[Test]
- [Category ("NotWorkingInterpreter")]
+ [Category ("NotWorkingLinqInterpreter")]
public void UserExtensionMethod ()
{
BindingFlags extensionFlags = BindingFlags.Static | BindingFlags.Public;