summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorFrancois Perrad <fperrad@gmail.com>2019-02-19 16:43:11 +0100
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>2019-03-28 17:20:00 +0100
commit6de6f21dc30455b9edcaceed8ab41c273615ed13 (patch)
tree3f84411e3e4e4105dfe0e5091c18e93aa9c02e14 /support
parent7ad1a47f9f67924ad724c7ebbc92a4fc07718296 (diff)
support/testing: add rings test
Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'support')
-rw-r--r--support/testing/tests/package/test_rings.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/support/testing/tests/package/test_rings.py b/support/testing/tests/package/test_rings.py
new file mode 100644
index 0000000000..be9765f185
--- /dev/null
+++ b/support/testing/tests/package/test_rings.py
@@ -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")