Files
rpi-buildroot/support/testing/tests/package/test_lua_periphery.py
Francois Perrad 21f57ed4ed package/lua-periphery: add test
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Julien Olivain <ju.o@free.fr>
2025-01-25 13:49:51 +01:00

26 lines
549 B
Python

from tests.package.test_lua import TestLuaBase
class TestLuaLuaperiphery(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUA=y
BR2_PACKAGE_LUA_PERIPHERY=y
"""
def test_run(self):
self.login()
self.module_test("periphery")
class TestLuajitLuaperiphery(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUAJIT=y
BR2_PACKAGE_LUA_PERIPHERY=y
"""
def test_run(self):
self.login()
self.module_test("periphery")