support/testing: add lua-utf8 test

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Francois Perrad
2019-02-19 16:43:05 +01:00
committed by Thomas Petazzoni
parent f830d89121
commit f4dc945fbc
2 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
from tests.package.test_lua import TestLuaBase
class TestLuaUtf8(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUA=y
BR2_PACKAGE_LUA_UTF8=y
"""
def test_run(self):
self.login()
self.module_test("utf8")
class TestLuajitUtf8(TestLuaBase):
config = TestLuaBase.config + \
"""
BR2_PACKAGE_LUAJIT=y
BR2_PACKAGE_LUA_UTF8=y
"""
def test_run(self):
self.login()
self.module_test("utf8")