mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-25 14:33:29 +08:00
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:
parent
35c858bd82
commit
2d1f32f084
21
support/testing/tests/package/test_perl_io_socket_ssl.py
Normal file
21
support/testing/tests/package/test_perl_io_socket_ssl.py
Normal 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")
|
Loading…
Reference in New Issue
Block a user