From: Ricardo Martincoski Date: Sun, 11 Aug 2019 01:35:37 +0000 (-0300) Subject: support/testing: provide entropy to lua tests X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=eb6b0fd87ab82a51ebcdcd0bc48a0b0dd43b6f35;p=buildroot.git support/testing: provide entropy to lua tests Newer versions of lua-http require entropy. Switch to use armv5 builtin kernel that already provides entropy for all lua tests. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/269139374 https://gitlab.com/buildroot.org/buildroot/-/jobs/269139376 Signed-off-by: Ricardo Martincoski Cc: Francois Perrad Cc: Thomas Petazzoni Signed-off-by: Thomas Petazzoni --- diff --git a/support/testing/tests/package/test_lua.py b/support/testing/tests/package/test_lua.py index 77358ba138..66ae85c999 100644 --- a/support/testing/tests/package/test_lua.py +++ b/support/testing/tests/package/test_lua.py @@ -12,7 +12,7 @@ class TestLuaBase(infra.basetest.BRTest): def login(self): cpio_file = os.path.join(self.builddir, "images", "rootfs.cpio") - self.emulator.boot(arch="armv7", + self.emulator.boot(arch="armv5", kernel="builtin", options=["-initrd", cpio_file]) self.emulator.login()