kumquat-buildroot/support/testing/tests/package/test_luafilesystem.py
Francois Perrad 3a3a661303 support/testing: add luafilesystem test
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2019-03-28 17:20:00 +01:00

26 lines
539 B
Python

from tests.package.test_lua import TestLuaBase
class TestLuaLuaFileSystem(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUA=y
BR2_PACKAGE_LUAFILESYSTEM=y
"""
def test_run(self):
self.login()
self.module_test("lfs")
class TestLuajitLuaFileSystem(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUAJIT=y
BR2_PACKAGE_LUAFILESYSTEM=y
"""
def test_run(self):
self.login()
self.module_test("lfs")