mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
support/testing: add rings test
Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
7ad1a47f9f
commit
6de6f21dc3
@ -404,6 +404,8 @@ tests.package.test_python_txtorcon.TestPythonPy2Txtorcon: { extends: .runtime_te
|
|||||||
tests.package.test_python_txtorcon.TestPythonPy3Txtorcon: { extends: .runtime_test }
|
tests.package.test_python_txtorcon.TestPythonPy3Txtorcon: { extends: .runtime_test }
|
||||||
tests.package.test_python_ubjson.TestPythonPy2Ubjson: { extends: .runtime_test }
|
tests.package.test_python_ubjson.TestPythonPy2Ubjson: { extends: .runtime_test }
|
||||||
tests.package.test_python_ubjson.TestPythonPy3Ubjson: { extends: .runtime_test }
|
tests.package.test_python_ubjson.TestPythonPy3Ubjson: { extends: .runtime_test }
|
||||||
|
tests.package.test_rings.TestLuaRings: { extends: .runtime_test }
|
||||||
|
tests.package.test_rings.TestLuajitRings: { extends: .runtime_test }
|
||||||
tests.package.test_rust.TestRust: { extends: .runtime_test }
|
tests.package.test_rust.TestRust: { extends: .runtime_test }
|
||||||
tests.package.test_rust.TestRustBin: { extends: .runtime_test }
|
tests.package.test_rust.TestRustBin: { extends: .runtime_test }
|
||||||
tests.package.test_syslog_ng.TestSyslogNg: { extends: .runtime_test }
|
tests.package.test_syslog_ng.TestSyslogNg: { extends: .runtime_test }
|
||||||
|
25
support/testing/tests/package/test_rings.py
Normal file
25
support/testing/tests/package/test_rings.py
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
from tests.package.test_lua import TestLuaBase
|
||||||
|
|
||||||
|
|
||||||
|
class TestLuaRings(TestLuaBase):
|
||||||
|
config = TestLuaBase.config + \
|
||||||
|
"""
|
||||||
|
BR2_PACKAGE_LUA=y
|
||||||
|
BR2_PACKAGE_RINGS=y
|
||||||
|
"""
|
||||||
|
|
||||||
|
def test_run(self):
|
||||||
|
self.login()
|
||||||
|
self.module_test("rings")
|
||||||
|
|
||||||
|
|
||||||
|
class TestLuajitRings(TestLuaBase):
|
||||||
|
config = TestLuaBase.config + \
|
||||||
|
"""
|
||||||
|
BR2_PACKAGE_LUAJIT=y
|
||||||
|
BR2_PACKAGE_RINGS=y
|
||||||
|
"""
|
||||||
|
|
||||||
|
def test_run(self):
|
||||||
|
self.login()
|
||||||
|
self.module_test("rings")
|
Loading…
x
Reference in New Issue
Block a user