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