support/testing: add perl-io-socket-multicast test

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Francois Perrad 2018-12-04 05:37:53 +01:00 committed by Thomas Petazzoni
parent d5196b8ee9
commit 35c858bd82

View File

@ -0,0 +1,21 @@
from tests.package.test_perl import TestPerlBase
class TestPerlIOSocketMulticast(TestPerlBase):
"""
package:
IO-Socket-Multicast XS
direct dependencies:
IO-Interface XS
"""
config = TestPerlBase.config + \
"""
BR2_PACKAGE_PERL=y
BR2_PACKAGE_PERL_IO_SOCKET_MULTICAST=y
"""
def test_run(self):
self.login()
self.module_test("IO::Interface")
self.module_test("IO::Socket::Multicast")