Skip to content

Commit

Permalink
disabled some Akka.NET core specs (akkadotnet#3857)
Browse files Browse the repository at this point in the history
* disabled some Akka.NET core specs

* Update ActorModelSpec.cs

* Update TailChoppingSpec.cs

* disabled racy BackoffSupervisorSpecs
  • Loading branch information
Aaronontheweb committed Jul 30, 2019
1 parent 2421003 commit 30c0212
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/core/Akka.Tests/Actor/Dispatch/ActorModelSpec.cs
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ public void A_dispatcher_must_process_messages_one_at_a_time()
AssertRefDefaultZero(a, registers: 1, msgsReceived: 3, msgsProcessed: 3, unregisters: 1, dispatcher: dispatcher);
}

[Fact]
[Fact(Skip = "Racy on Azure DevOps")]
public void A_dispatcher_must_handle_queuing_from_multiple_threads()
{
var dispatcher = InterceptedDispatcher();
Expand Down
6 changes: 3 additions & 3 deletions src/core/Akka.Tests/Pattern/BackoffSupervisorSpec.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public static Props Props(IActorRef probe)
private IActorRef Create(BackoffOptions options) => Sys.ActorOf(BackoffSupervisor.Props(options));
#endregion

[Fact]
[Fact(Skip = "Racy on Azure DevOps")]
public void BackoffSupervisor_must_start_child_again_when_it_stops_when_using_Backoff_OnStop()
{
var supervisor = Create(OnStopOptions());
Expand Down Expand Up @@ -340,7 +340,7 @@ internal class DelayTable : IEnumerable<object[]>
IEnumerator IEnumerable.GetEnumerator() => GetEnumerator();
}

[Fact]
[Fact(Skip = "Racy on Azure DevOps")]
public void BackoffSupervisor_must_stop_restarting_the_child_after_reaching_maxNrOfRetries_limit_using_BackOff_OnStop()
{
var supervisor = Create(OnStopOptions(maxNrOfRetries: 2));
Expand Down Expand Up @@ -389,7 +389,7 @@ IActorRef WaitForChild()
ExpectTerminated(supervisor);
}

[Fact]
[Fact(Skip = "Racy on Azure DevOps")]
public void BackoffSupervisor_must_stop_restarting_the_child_after_reaching_maxNrOfRetries_limit_using_BackOff_OnFailure()
{
EventFilter.Exception<TestException>().Expect(3, () =>
Expand Down
2 changes: 1 addition & 1 deletion src/core/Akka.Tests/Routing/TailChoppingSpec.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public void Tail_chopping_group_router_must_return_response_from_second_actor_af
routedActor.Tell(new Broadcast("stop"));
}

[Fact]
[Fact(Skip = "Skip until fix from https://github.com/akkadotnet/akka.net/pull/3790 merged")]
public void Tail_chopping_group_router_must_throw_exception_if_no_result_will_arrive_within_the_given_time()
{
var actor1 = Sys.ActorOf(Props.Create(() => new TailChopTestActor(1500.Milliseconds())), "Actor3");
Expand Down

0 comments on commit 30c0212

Please sign in to comment.