package/lua-inotify: new package

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
Francois Perrad
2020-05-18 07:23:45 +02:00
committed by Arnout Vandecappelle (Essensium/Mind)
parent c17a9b2de8
commit e39379ff59
6 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
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")