mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-02 20:51:10 -09:00
Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
26 lines
531 B
Python
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")
|