mirror of
https://git.yoctoproject.org/poky
synced 2026-04-01 05:02:21 +02:00
This migrates current runtime test suite to be used with the new framework. [YOCTO #10234] (From OE-Core rev: b39c61f2d442c79d03b73e8ffd104996fcb2177e) Signed-off-by: Mariano Lopez <mariano.lopez@linux.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!") |