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