mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 02:33:02 +01:00
Bug 6705. (From OE-Core rev: 4d3574e7fe5353b4dbbf5266a8b950b57542a743) Signed-off-by: Lucian Musat <george.l.musat@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 lines
307 B
Python
9 lines
307 B
Python
import unittest
|
|
from oeqa.oetest import oeRuntimeTest
|
|
from oeqa.utils.qemutinyrunner import *
|
|
|
|
class QemuTinyTest(oeRuntimeTest):
|
|
|
|
def test_boot_tiny(self):
|
|
(status, output) = self.target.run_serial('uname -a')
|
|
self.assertTrue("yocto-tiny" in output, msg="Cannot detect poky tiny boot!") |