support/testing: add luaossl 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
2019-02-19 16:43:08 +01:00
committed by Thomas Petazzoni
parent 3a3a661303
commit d2db91b334
2 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
from tests.package.test_lua import TestLuaBase
class TestLuaLuaossl(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUA=y
BR2_PACKAGE_LUAOSSL=y
"""
def test_run(self):
self.login()
self.module_test("openssl")
class TestLuajitLuaossl(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUAJIT=y
BR2_PACKAGE_LUAOSSL=y
"""
def test_run(self):
self.login()
self.module_test("openssl")