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:
authorMarek Safar <marek.safar@gmail.com>2016-12-21 18:44:54 +0300
committerGitHub <noreply@github.com>2016-12-21 18:44:54 +0300
commita3f17f80077bad4f96935a6a349f28285a7ed087 (patch)
treeecee405d4d950738659d385c5a7d7a08230429bd /mcs/class/System.Core
parent453e9feace450de3042fdd343e65328f01d1c5e1 (diff)
parent36cbe761677da5ca2cefa36562f1b37ed7eca7dd (diff)
Merge pull request #4187 from rolfbjarne/dynamic-method-ios
[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..4fca0b34f42 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 !FULL_AOT_RUNTIME
[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)
{