xref: /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/runtime/cases/_qemutiny.py (revision 4882a59341e53eb6f0b4789bf948001014eff981)
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