mirror of
https://git.yoctoproject.org/poky
synced 2026-05-05 07:39:49 +02:00
The new oeqa core framework will modify the structure of the runtime folder the new runtime folder will have python code inside to support runtime test cases. (From OE-Core rev: 637b712096e9d230e15b1a432a561e4118db34c8) Signed-off-by: Aníbal Limón <anibal.limon@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!") |