summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorFrancois Perrad <fperrad@gmail.com>2019-02-19 16:43:08 +0100
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>2019-03-28 17:20:00 +0100
commitd2db91b334c7e5cfb0ba7395bdbdcd5e786f3b9e (patch)
tree694e75c94e6357d9fc134bc2af6bdfaa19b1c0fc /support
parent3a3a661303c0518226ce2000ed73055efc10ac7f (diff)
support/testing: add luaossl 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_luaossl.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/support/testing/tests/package/test_luaossl.py b/support/testing/tests/package/test_luaossl.py
new file mode 100644
index 0000000000..f6914e0544
--- /dev/null
+++ b/support/testing/tests/package/test_luaossl.py
@@ -0,0 +1,25 @@
+from tests.package.test_lua import TestLuaBase
+
+
+class TestLuaLuaossl(TestLuaBase):
+ config = TestLuaBase.config + \
+ """
+ BR2_PACKAGE_LUA=y
+ BR2_PACKAGE_LUAOSSL=y
+ """
+
+ def test_run(self):
+ self.login()
+ self.module_test("openssl")
+
+
+class TestLuajitLuaossl(TestLuaBase):
+ config = TestLuaBase.config + \
+ """
+ BR2_PACKAGE_LUAJIT=y
+ BR2_PACKAGE_LUAOSSL=y
+ """
+
+ def test_run(self):
+ self.login()
+ self.module_test("openssl")