1import os 2 3import infra.basetest 4 5 6class TestAvocado(infra.basetest.BRTest): 7 config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \ 8 """ 9 BR2_PACKAGE_AVOCADO=y 10 BR2_TARGET_ROOTFS_CPIO=y 11 # BR2_TARGET_ROOTFS_TAR is not set 12 """ 13 14 def test_run(self): 15 img = os.path.join(self.builddir, "images", "rootfs.cpio") 16 self.emulator.boot(arch="armv5", 17 kernel="builtin", 18 options=["-initrd", img]) 19 self.emulator.login() 20 cmd = "avocado run /bin/true" 21 self.assertRunOk(cmd, timeout=30) 22 cmd = "avocado plugins" 23 self.assertRunOk(cmd, timeout=30) 24