Merge pull request #820 from brendanzagaeski/master
[mono.git] / mcs / class / System.Core / Test / System.Linq.Expressions / ExpressionTest_Coalesce.cs
index 0fe89ea671075b2d1b4cc916ba211cc5bc61f49b..e9c43fe4da1252cebe8430e89daceac8eec918e5 100644 (file)
@@ -87,6 +87,7 @@ namespace MonoTests.System.Linq.Expressions
                }
 
                [Test]
+               [Category ("NotWorkingInterpreter")]
                public void CoalesceNullableInt ()
                {
                        var a = Expression.Parameter (typeof (int?), "a");
@@ -115,6 +116,7 @@ namespace MonoTests.System.Linq.Expressions
                }
 
                [Test]
+               [Category ("NotWorkingInterpreter")]
                public void CoalesceNullableToNonNullable ()
                {
                        var a = Expression.Parameter (typeof (int?), "a");
@@ -132,6 +134,7 @@ namespace MonoTests.System.Linq.Expressions
                }
 
                [Test]
+               [Category ("NotWorkingInterpreter")]
                [Category ("NotDotNet")] // https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=349822
                public void CoalesceUserDefinedConversion ()
                {
@@ -165,6 +168,7 @@ namespace MonoTests.System.Linq.Expressions
                [Test]
                // #12987
                [Category ("MobileNotWorking")]
+               [Category ("NotWorkingInterpreter")]
                public void CoalesceNullableSlotIntoInteger ()
                {
                        var s = Expression.Parameter (typeof (Slot?), "s");