ubuntu-buildroot/support/testing/tests/package/test_lzlib.py

15 lines
308 B
Python
Raw Permalink Normal View History

2024-04-01 15:19:46 +00:00
from tests.package.test_lua import TestLuaBase
class TestLuaLzlib(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUA=y
BR2_PACKAGE_LZLIB=y
"""
def test_run(self):
self.login()
self.module_test("zlib")
self.module_test("gzip")