Browse Source

support/testing: add luasocket test

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Francois Perrad 6 năm trước cách đây
mục cha
commit
7ad1a47f9f
2 tập tin đã thay đổi với 27 bổ sung0 xóa
  1. 2 0
      .gitlab-ci.yml
  2. 25 0
      support/testing/tests/package/test_luasocket.py

+ 2 - 0
.gitlab-ci.yml

@@ -344,6 +344,8 @@ tests.package.test_luaossl.TestLuaLuaossl: { extends: .runtime_test }
 tests.package.test_luaossl.TestLuajitLuaossl: { extends: .runtime_test }
 tests.package.test_luasec.TestLuaLuaSec: { extends: .runtime_test }
 tests.package.test_luasec.TestLuajitLuaSec: { extends: .runtime_test }
+tests.package.test_luasocket.TestLuaLuaSocket: { extends: .runtime_test }
+tests.package.test_luasocket.TestLuajitLuaSocket: { extends: .runtime_test }
 tests.package.test_openjdk.TestOpenJdk: { extends: .runtime_test }
 tests.package.test_perl.TestPerl: { extends: .runtime_test }
 tests.package.test_perl_class_load.TestPerlClassLoad: { extends: .runtime_test }

+ 25 - 0
support/testing/tests/package/test_luasocket.py

@@ -0,0 +1,25 @@
+from tests.package.test_lua import TestLuaBase
+
+
+class TestLuaLuaSocket(TestLuaBase):
+    config = TestLuaBase.config + \
+        """
+        BR2_PACKAGE_LUA=y
+        BR2_PACKAGE_LUASOCKET=y
+        """
+
+    def test_run(self):
+        self.login()
+        self.module_test("socket")
+
+
+class TestLuajitLuaSocket(TestLuaBase):
+    config = TestLuaBase.config + \
+        """
+        BR2_PACKAGE_LUAJIT=y
+        BR2_PACKAGE_LUASOCKET=y
+        """
+
+    def test_run(self):
+        self.login()
+        self.module_test("socket")