package/lua-argon2: new package

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Francois Perrad
2021-12-06 19:42:00 +01:00
committed by Thomas Petazzoni
parent 9892fd8f06
commit a15cb73b49
5 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
from tests.package.test_lua import TestLuaBase
class TestLuaLuaArgon2(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUA=y
BR2_PACKAGE_LUA_ARGON2=y
"""
def test_run(self):
self.login()
self.module_test("argon2")
class TestLuajitLuaArgon2(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUAJIT=y
BR2_PACKAGE_LUA_ARGON2=y
"""
def test_run(self):
self.login()
self.module_test("argon2")