Преглед изворни кода

support/testing: add luaexpat test

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Francois Perrad пре 6 година
родитељ
комит
596465e61a
2 измењених фајлова са 27 додато и 0 уклоњено
  1. 2 0
      .gitlab-ci.yml
  2. 25 0
      support/testing/tests/package/test_luaexpat.py

+ 2 - 0
.gitlab-ci.yml

@@ -336,6 +336,8 @@ tests.package.test_lua_curl.TestLuaLuacURL: { extends: .runtime_test }
 tests.package.test_lua_curl.TestLuajitLuacURL: { extends: .runtime_test }
 tests.package.test_lua_utf8.TestLuaUtf8: { extends: .runtime_test }
 tests.package.test_lua_utf8.TestLuajitUtf8: { extends: .runtime_test }
+tests.package.test_luaexpat.TestLuaLuaExpat: { extends: .runtime_test }
+tests.package.test_luaexpat.TestLuajitLuaExpat: { 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_luaexpat.py

@@ -0,0 +1,25 @@
+from tests.package.test_lua import TestLuaBase
+
+
+class TestLuaLuaExpat(TestLuaBase):
+    config = TestLuaBase.config + \
+        """
+        BR2_PACKAGE_LUA=y
+        BR2_PACKAGE_LUAEXPAT=y
+        """
+
+    def test_run(self):
+        self.login()
+        self.module_test("lxp")
+
+
+class TestLuajitLuaExpat(TestLuaBase):
+    config = TestLuaBase.config + \
+        """
+        BR2_PACKAGE_LUAJIT=y
+        BR2_PACKAGE_LUAEXPAT=y
+        """
+
+    def test_run(self):
+        self.login()
+        self.module_test("lxp")