Files
poky/meta/lib/oeqa/runtime/cases/_qemutiny.py
Mariano Lopez b569aa0e00 oeqa/runtime/cases: Migrate runtime tests.
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>
2017-01-23 12:05:20 +00:00

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!")