Files
buildroot/support/testing/tests/package/test_lua_zlib.py
tiopex dcdaa3599c bump version to 2022.02.9
add miyoo_defconfig
2023-01-31 16:39:34 +01:00

26 lines
519 B
Python

from tests.package.test_lua import TestLuaBase
class TestLuaLuazlib(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUA=y
BR2_PACKAGE_LUA_ZLIB=y
"""
def test_run(self):
self.login()
self.module_test("zlib")
class TestLuajitLuazlib(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUAJIT=y
BR2_PACKAGE_LUA_ZLIB=y
"""
def test_run(self):
self.login()
self.module_test("zlib")