_qemutiny.py 278 B

12345678
  1. from oeqa.runtime.case import OERuntimeTestCase
  2. class QemuTinyTest(OERuntimeTestCase):
  3. def test_boot_tiny(self):
  4. status, output = self.target.run_serial('uname -a')
  5. msg = "Cannot detect poky tiny boot!"
  6. self.assertTrue("yocto-tiny" in output, msg)