Files
operating-system/buildroot/support/testing/tests/package/test_lualdap.py
Stefan Agner f358f322da Bump Buildroot to 2021.02-rc3 (#1260)
* Rebase patches to Buildroot 2021.02-rc3

* Update Buildroot to 2021.02-rc3

* Declare Kernel headers to be Linux version 5.10 (since they are, and new Buildroot knows about 5.10)
2021-03-04 00:50:33 +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")