Merge pull request #19630 from akka/wip-16262-mark-as-pending-johanandren
=doc #16262 temporary disable failing udp multicast doc test
This commit is contained in:
commit
7461955e85
1 changed files with 3 additions and 0 deletions
|
|
@ -19,6 +19,8 @@ class ScalaUdpMulticastSpec extends TestKit(ActorSystem("ScalaUdpMulticastSpec")
|
|||
|
||||
"listener" should {
|
||||
"send message back to sink" in {
|
||||
// TODO make this work consistently on all platforms
|
||||
pending
|
||||
|
||||
def okInterfaceToUse(iface: NetworkInterface): Boolean = {
|
||||
iface.getInetAddresses.exists(_.isInstanceOf[Inet6Address]) &&
|
||||
|
|
@ -41,6 +43,7 @@ class ScalaUdpMulticastSpec extends TestKit(ActorSystem("ScalaUdpMulticastSpec")
|
|||
val listener = system.actorOf(Props(classOf[Listener], iface, group, port, sink))
|
||||
expectMsgType[Udp.Bound]
|
||||
val sender = system.actorOf(Props(classOf[Sender], iface, group, port, msg))
|
||||
// fails here, so binding succeeds but sending a message does not
|
||||
expectMsg(msg)
|
||||
|
||||
// unbind
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue