blob: 14ff8b98b22a08ce255a8eb5aafbd70344d3919c [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001#
Patrick Williams92b42cb2022-09-03 06:53:57 -05002# Copyright OpenEmbedded Contributors
3#
Brad Bishopc342db32019-05-15 21:57:59 -04004# SPDX-License-Identifier: MIT
5#
6
Brad Bishop6e60e8b2018-02-01 10:27:11 -05007from oeqa.runtime.case import OERuntimeTestCase
8
9class QemuTinyTest(OERuntimeTestCase):
10
11 def test_boot_tiny(self):
12 status, output = self.target.run_serial('uname -a')
13 msg = "Cannot detect poky tiny boot!"
14 self.assertTrue("yocto-tiny" in output, msg)