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