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>2013-01-17 15:03:26 +0400
committerAtsushi Eno <atsushieno@veritas-vos-liberabit.com>2013-01-17 15:03:26 +0400
commitc17404d480a3c3367cbd3d5f682e7b18e13c58f2 (patch)
treef2e97e110de96fa7c9c30ba1a4463631cf5513e1
parent34b84be2ed88fbea66e613d3151e6fbecefe2735 (diff)
[iOS] Add [Ignore]s on nunit test run stoppers on device.
-rw-r--r--Rx.NET/Tests.System.Reactive/Tests/ObservableEventsTest.cs5
-rw-r--r--Rx.NET/Tests.System.Reactive/Tests/ObserverTest.cs8
2 files changed, 11 insertions, 2 deletions
diff --git a/Rx.NET/Tests.System.Reactive/Tests/ObservableEventsTest.cs b/Rx.NET/Tests.System.Reactive/Tests/ObservableEventsTest.cs
index 269c12a..40ada1d 100644
--- a/Rx.NET/Tests.System.Reactive/Tests/ObservableEventsTest.cs
+++ b/Rx.NET/Tests.System.Reactive/Tests/ObservableEventsTest.cs
@@ -854,7 +854,10 @@ namespace ReactiveTests.Tests
}
[TestMethod]
- public void FromEvent_SynchronizationContext()
+#if MONOTOUCH
+ [Ignore ("This causes AOT crash")]
+#endif
+ public void FromEvent_SynchronizationContext()
{
var beforeSubscribeNull = false;
var afterSubscribeNull = false;
diff --git a/Rx.NET/Tests.System.Reactive/Tests/ObserverTest.cs b/Rx.NET/Tests.System.Reactive/Tests/ObserverTest.cs
index 8dd3c15..5d2bd87 100644
--- a/Rx.NET/Tests.System.Reactive/Tests/ObserverTest.cs
+++ b/Rx.NET/Tests.System.Reactive/Tests/ObserverTest.cs
@@ -739,12 +739,18 @@ namespace ReactiveTests.Tests
}
[TestMethod]
- public void NotifyOn_Scheduler_OnCompleted()
+#if MONOTOUCH
+ [Ignore ("This causes AOT crash")]
+#endif
+ public void NotifyOn_Scheduler_OnCompleted()
{
NotifyOn_Scheduler(true);
}
[TestMethod]
+#if MONOTOUCH
+ [Ignore ("This causes AOT crash")]
+#endif
public void NotifyOn_Scheduler_OnError()
{
NotifyOn_Scheduler(false);