diff options
author | 2020-12-20 14:55:14 +0100 | |
---|---|---|
committer | 2020-12-31 15:13:06 +0100 | |
commit | 2949f423a4c4c02defdef47affe45076d4dea82d (patch) | |
tree | 1df0cbc1b64567d42d48b991f480196ddc8bd836 /support | |
parent | b8557905b7a51f63cf33f9275dc7ce87a80433dd (diff) | |
download | buildroot-2949f423a4c4c02defdef47affe45076d4dea82d.tar.gz buildroot-2949f423a4c4c02defdef47affe45076d4dea82d.tar.bz2 |
package/lualdap: new package
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'support')
-rw-r--r-- | support/testing/tests/package/test_lualdap.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/support/testing/tests/package/test_lualdap.py b/support/testing/tests/package/test_lualdap.py new file mode 100644 index 0000000000..2ec0d58228 --- /dev/null +++ b/support/testing/tests/package/test_lualdap.py @@ -0,0 +1,25 @@ +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") |