kumquat-buildroot/support/testing/tests/package/test_lualdap.py
Francois Perrad 2949f423a4 package/lualdap: new package
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020-12-31 15:13:06 +01:00

26 lines
523 B
Python

from tests.package.test_lua import TestLuaBase
class TestLuaLuaLdap(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUA=y
BR2_PACKAGE_LUALDAP=y
"""
def test_run(self):
self.login()
self.module_test("lualdap")
class TestLuajitLuaLdap(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUAJIT=y
BR2_PACKAGE_LUALDAP=y
"""
def test_run(self):
self.login()
self.module_test("lualdap")