Merge pull request #17764 from akka/wip-17501-harden-ReliableProxySpec-patriknw

=con #17501 Increase timeouts in ReliableProxySpec
This commit is contained in:
Patrik Nordwall 2015-06-18 11:16:10 +02:00
commit b8ef08ae71

View file

@ -103,7 +103,7 @@ class ReliableProxySpec extends MultiNodeSpec(ReliableProxySpec) with STMultiNod
} }
runOn(remote) { runOn(remote) {
expectMsg("hello") expectMsg(1.second, "hello")
} }
enterBarrier("initialize-done") enterBarrier("initialize-done")
@ -116,7 +116,7 @@ class ReliableProxySpec extends MultiNodeSpec(ReliableProxySpec) with STMultiNod
expectTransition(Active, Idle) expectTransition(Active, Idle)
} }
runOn(remote) { runOn(remote) {
within(1 second) { within(5 seconds) {
expectN(100) expectN(100)
} }
} }
@ -129,7 +129,7 @@ class ReliableProxySpec extends MultiNodeSpec(ReliableProxySpec) with STMultiNod
expectTransition(Active, Idle) expectTransition(Active, Idle)
} }
runOn(remote) { runOn(remote) {
within(1 second) { within(5 seconds) {
expectN(100) expectN(100)
} }
} }
@ -158,7 +158,7 @@ class ReliableProxySpec extends MultiNodeSpec(ReliableProxySpec) with STMultiNod
expectTransition(5 seconds, Active, Idle) expectTransition(5 seconds, Active, Idle)
} }
runOn(remote) { runOn(remote) {
within(1 second) { within(5 seconds) {
expectN(100) expectN(100)
} }
} }
@ -174,7 +174,7 @@ class ReliableProxySpec extends MultiNodeSpec(ReliableProxySpec) with STMultiNod
expectNoMsg(expectNoMsgTimeout) expectNoMsg(expectNoMsgTimeout)
} }
runOn(remote) { runOn(remote) {
within(1 second) { within(5 second) {
expectN(100) expectN(100)
} }
} }
@ -231,10 +231,10 @@ class ReliableProxySpec extends MultiNodeSpec(ReliableProxySpec) with STMultiNod
} }
} }
runOn(remote) { runOn(remote) {
within(1 second) { within(5 second) {
expectN(50) expectN(50)
} }
expectNoMsg(2 seconds) expectNoMsg(1 seconds)
} }
enterBarrier("test5") enterBarrier("test5")