kumquat-buildroot/support/testing/tests/package/test_lua_inotify.py
Francois Perrad e39379ff59 package/lua-inotify: new package
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-01-08 18:03:59 +01:00

26 lines
531 B
Python

from tests.package.test_lua import TestLuaBase
class TestLuaInotify(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUA=y
BR2_PACKAGE_LUA_INOTIFY=y
"""
def test_run(self):
self.login()
self.module_test("inotify")
class TestLuajitInotify(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUAJIT=y
BR2_PACKAGE_LUA_INOTIFY=y
"""
def test_run(self):
self.login()
self.module_test("inotify")