package/lua-zlib: new package
This module is only partially compatible with lzlib (which is no longer maintained). Signed-off-by: Francois Perrad <francois.perrad@gadz.org> [yann.morin.1998@free.fr: amend commit log about limited compatibility] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
committed by
Yann E. MORIN
parent
01bc4fb2f1
commit
b4fd87f993
25
support/testing/tests/package/test_lua_zlib.py
Normal file
25
support/testing/tests/package/test_lua_zlib.py
Normal file
@@ -0,0 +1,25 @@
|
||||
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")
|
||||
Reference in New Issue
Block a user