eaa2c3a6f7
Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Reviewed-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Tested-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15 lines
308 B
Python
15 lines
308 B
Python
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")
|