From: Francois Perrad Date: Thu, 1 Aug 2019 20:44:51 +0000 (+0200) Subject: support/testing: improve test_luasyslog X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1a49dcb5287111cb0cb4d3d38eea95dc85d0893f;p=buildroot.git support/testing: improve test_luasyslog Lua has a builtin lsyslog module, so let's test this one as well. Signed-off-by: Francois Perrad Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- diff --git a/support/testing/tests/package/test_luasyslog.py b/support/testing/tests/package/test_luasyslog.py index 4eb5402d0e..158b95cb06 100644 --- a/support/testing/tests/package/test_luasyslog.py +++ b/support/testing/tests/package/test_luasyslog.py @@ -10,6 +10,7 @@ class TestLuaLuasyslog(TestLuaBase): def test_run(self): self.login() + self.module_test("lsyslog") self.module_test("logging.syslog") @@ -22,4 +23,5 @@ class TestLuajitLuasyslog(TestLuaBase): def test_run(self): self.login() + self.module_test("lsyslog") self.module_test("logging.syslog")