[Buildroot] [next/testing Lua modules 09/11] support/testing: add luasec test

Francois Perrad fperrad at gmail.com
Tue Feb 19 15:43:09 UTC 2019


Signed-off-by: Francois Perrad <francois.perrad at gadz.org>
---
 .gitlab-ci.yml                               |  2 ++
 support/testing/tests/package/test_luasec.py | 25 ++++++++++++++++++++
 2 files changed, 27 insertions(+)
 create mode 100644 support/testing/tests/package/test_luasec.py

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 92a54bd1f..12ac3a43e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -342,6 +342,8 @@ tests.package.test_luafilesystem.TestLuaLuaFileSystem: { extends: .runtime_test
 tests.package.test_luafilesystem.TestLuajitLuaFileSystem: { extends: .runtime_test }
 tests.package.test_luaossl.TestLuaLuaossl: { extends: .runtime_test }
 tests.package.test_luaosll.TestLuajitLuaossl: { extends: .runtime_test }
+tests.package.test_luasec.TestLuaLuaSec: { extends: .runtime_test }
+tests.package.test_luasec.TestLuajitLuaSec: { extends: .runtime_test }
 tests.package.test_perl.TestPerl: { extends: .runtime_test }
 tests.package.test_perl_class_load.TestPerlClassLoad: { extends: .runtime_test }
 tests.package.test_perl_dbd_mysql.TestPerlDBDmysql: { extends: .runtime_test }
diff --git a/support/testing/tests/package/test_luasec.py b/support/testing/tests/package/test_luasec.py
new file mode 100644
index 000000000..f87326362
--- /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")
-- 
2.17.1




More information about the buildroot mailing list