summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorFrancois Perrad <fperrad@gmail.com>2019-02-19 16:43:09 +0100
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>2019-03-28 17:20:00 +0100
commit97032e2f4fbd7f087c52461552031789e99e938e (patch)
treedcc37b4b800e5abe65269970c7686a855d30190e /support
parentd2db91b334c7e5cfb0ba7395bdbdcd5e786f3b9e (diff)
support/testing: add luasec 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_luasec.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/support/testing/tests/package/test_luasec.py b/support/testing/tests/package/test_luasec.py
new file mode 100644
index 0000000000..f87326362d
--- /dev/null
+++ b/support/testing/tests/package/test_luasec.py
@@ -0,0 +1,25 @@
+from tests.package.test_lua import TestLuaBase
+
+
+class TestLuaLuaSec(TestLuaBase):
+ config = TestLuaBase.config + \
+ """
+ BR2_PACKAGE_LUA=y
+ BR2_PACKAGE_LUASEC=y
+ """
+
+ def test_run(self):
+ self.login()
+ self.module_test("ssl")
+
+
+class TestLuajitLuaSec(TestLuaBase):
+ config = TestLuaBase.config + \
+ """
+ BR2_PACKAGE_LUAJIT=y
+ BR2_PACKAGE_LUASEC=y
+ """
+
+ def test_run(self):
+ self.login()
+ self.module_test("ssl")