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:
authorRolf Bjarne Kvinge <rolf@xamarin.com>2016-12-21 13:42:20 +0300
committerRolf Bjarne Kvinge <rolf@xamarin.com>2016-12-21 13:44:10 +0300
commit5948e157e85b2510ef4805ac844039cc24f3da1e (patch)
treeceef5fbe3296de8b039308acf78adb0c2b4086d1 /mcs/class/System.Core
parentb8625e671a92fb09d24e973b57aa7033e2bd9513 (diff)
[test] DynamicMethod isn't available on iOS.
Diffstat (limited to 'mcs/class/System.Core')
-rw-r--r--mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Call.cs2
1 files changed, 2 insertions, 0 deletions
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 55585026da3..03060f93c5b 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
@@ -293,6 +293,7 @@ namespace MonoTests.System.Linq.Expressions {
Assert.AreEqual ("foo42", lamda (42, "foo"));
}
+#if !MONOTOUCH
[Test]
public void CallDynamicMethod_ToString ()
{
@@ -322,6 +323,7 @@ namespace MonoTests.System.Linq.Expressions {
var lambda = Expression.Lambda<Func<int, int>> (e, i).Compile ();
Assert.AreEqual (42, lambda (42));
}
+#endif
public static int Bang (Expression i)
{