support/testing: add perl-io-socket-ssl 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:54 +01:00 committed by Thomas Petazzoni
parent 35c858bd82
commit 2d1f32f084

View File

@ -0,0 +1,21 @@
from tests.package.test_perl import TestPerlBase
class TestPerlIOSocketSSL(TestPerlBase):
"""
package:
IO-Socket-SSL
direct dependencies:
Net-SSLeay XS
"""
config = TestPerlBase.config + \
"""
BR2_PACKAGE_PERL=y
BR2_PACKAGE_PERL_IO_SOCKET_SSL=y
"""
def test_run(self):
self.login()
self.module_test("Net::SSLeay")
self.module_test("IO::Socket::SSL")