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

github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@veritas-vos-liberabit.com>2012-11-21 11:48:04 +0400
committerAtsushi Eno <atsushieno@veritas-vos-liberabit.com>2012-11-21 11:48:04 +0400
commit19e827e1088f03c053a8af115a42651af3e7cfa2 (patch)
tree093977f63402f5e6b1662a428dfab7f340ed4611
parent5a5928b163e13a0d0366de2f899e7ce83ccca7e2 (diff)
Add mono bug-dependent build condition.
-rw-r--r--Rx.NET/Tests.System.Reactive/Tests/ObservableExTest.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Rx.NET/Tests.System.Reactive/Tests/ObservableExTest.cs b/Rx.NET/Tests.System.Reactive/Tests/ObservableExTest.cs
index ca57963..857f0f6 100644
--- a/Rx.NET/Tests.System.Reactive/Tests/ObservableExTest.cs
+++ b/Rx.NET/Tests.System.Reactive/Tests/ObservableExTest.cs
@@ -1470,6 +1470,7 @@ namespace ReactiveTests.Tests
ReactiveAssert.Throws<ArgumentNullException>(() => ObservableEx.ManySelect<int, int>(DummyObservable<int>.Instance, null));
}
+#if !MONOTOUCH // mcs rejects to compile this use of generic extension method.
[TestMethod]
public void ManySelect_Law_1()
{
@@ -1480,6 +1481,7 @@ namespace ReactiveTests.Tests
Assert.IsTrue(left.SequenceEqual(right).First());
}
+#endif
[TestMethod]
public void ManySelect_Law_2()