_qemutiny.py 314 B

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