mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00

There were two missing cases to be migrated to the new framework: _qemutiny and _ptest. qemutiny was straightforward. ptest on the other hand wasn't working even in previous releases; it has been migrated from smart to dnf, and how ptest packages are gathered to be installed, adapted to use unicode, and removed a lot of code that wasn't needed anymore. (From OE-Core rev: ee7c19546b686e852d01df25143504d9798d10d6) Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 lines
278 B
Python
9 lines
278 B
Python
from oeqa.runtime.case import OERuntimeTestCase
|
|
|
|
class QemuTinyTest(OERuntimeTestCase):
|
|
|
|
def test_boot_tiny(self):
|
|
status, output = self.target.run_serial('uname -a')
|
|
msg = "Cannot detect poky tiny boot!"
|
|
self.assertTrue("yocto-tiny" in output, msg)
|