// We abuse DNSServerTestBase for this test, as we don't need the
// initialization.
commonSetup();
+ /*
+ FIXME: The UDP server doesn't fail reliably with an invalid FD.
+ We need to find a way to trigger it reliably (it seems epoll
+ asio backend does fail as it tries to insert it right away, but
+ not the others, maybe we could make it run this at last on epoll-based
+ systems).
EXPECT_THROW(UDPServer(service, -1, AF_INET, checker_, lookup_,
answer_), isc::asiolink::IOError);
+ */
EXPECT_THROW(TCPServer(service, -1, AF_INET, checker_, lookup_,
answer_), isc::asiolink::IOError);
}