From a3b3571fab34b4a08fea69d019c0727b794cae6a Mon Sep 17 00:00:00 2001 From: Francois Perrad Date: Mon, 27 Apr 2020 18:57:59 +0200 Subject: [PATCH] support/testing: test_lua_utf8: fix test after bump to lua-utf8 0.1.2 The commit 0f0649140f73645f4cd00c9c0d27c50e9fa1caf9 introduced a change in the module name: utf8 -> lua-utf8. The packages-file-list.txt show the change in the files intalled on the rootfs: [lua-utf8 0.1.2-2 latest version] lua-utf8,./usr/lib/luarocks/rocks-5.1/luautf8/0.1.2-2/doc/LICENSE lua-utf8,./usr/lib/luarocks/rocks-5.1/luautf8/0.1.2-2/doc/README.md lua-utf8,./usr/lib/luarocks/rocks-5.1/luautf8/0.1.2-2/luautf8-0.1.2-2.rockspec lua-utf8,./usr/lib/luarocks/rocks-5.1/luautf8/0.1.2-2/rock_manifest lua-utf8,./usr/lib/lua/5.1/lua-utf8.so [lua-utf8 1.2-0 previous version] lua-utf8,./usr/lib/luarocks/rocks-5.1/utf8/1.2-0/doc/README.md lua-utf8,./usr/lib/luarocks/rocks-5.1/utf8/1.2-0/utf8-1.2-0.rockspec lua-utf8,./usr/lib/luarocks/rocks-5.1/utf8/1.2-0/rock_manifest lua-utf8,./usr/lib/lua/5.1/utf8.so Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/526036036 Signed-off-by: Francois Perrad Signed-off-by: Thomas Petazzoni --- support/testing/tests/package/test_lua_utf8.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/support/testing/tests/package/test_lua_utf8.py b/support/testing/tests/package/test_lua_utf8.py index 3eab19dd4d..5946a439cf 100644 --- a/support/testing/tests/package/test_lua_utf8.py +++ b/support/testing/tests/package/test_lua_utf8.py @@ -10,7 +10,7 @@ class TestLuaUtf8(TestLuaBase): def test_run(self): self.login() - self.module_test("utf8") + self.module_test("lua-utf8") class TestLuajitUtf8(TestLuaBase): @@ -22,4 +22,4 @@ class TestLuajitUtf8(TestLuaBase): def test_run(self): self.login() - self.module_test("utf8") + self.module_test("lua-utf8") -- 2.30.2