kumquat-buildroot/support/testing/tests/package/test_avocado.py
José Pekkarinen ef321ff4a9 package/avocado: new package
Signed-off-by: José Pekkarinen <jose.pekkarinen@unikie.com>
[Thomas: add test case, add missing dependencies]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-07-26 10:07:52 +02:00

24 lines
677 B
Python

import os
import infra.basetest
class TestAvocado(infra.basetest.BRTest):
config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \
"""
BR2_PACKAGE_AVOCADO=y
BR2_TARGET_ROOTFS_CPIO=y
# BR2_TARGET_ROOTFS_TAR is not set
"""
def test_run(self):
img = os.path.join(self.builddir, "images", "rootfs.cpio")
self.emulator.boot(arch="armv5",
kernel="builtin",
options=["-initrd", img])
self.emulator.login()
cmd = "avocado run /bin/true"
self.assertRunOk(cmd, timeout=30)
cmd = "avocado plugins"
self.assertRunOk(cmd, timeout=30)