blob: 6886e3650273d3e009b982d18fcdfdc026219a80 [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001#
2# SPDX-License-Identifier: MIT
3#
4
Brad Bishop6e60e8b2018-02-01 10:27:11 -05005from 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)