mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
oeqa/runtime: Boot test for poky-tiny.
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>
This commit is contained in:
committed by
Richard Purdie
parent
38320db53f
commit
3d1106ea4b
9
meta/lib/oeqa/runtime/_qemutiny.py
Normal file
9
meta/lib/oeqa/runtime/_qemutiny.py
Normal file
@@ -0,0 +1,9 @@
|
||||
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!")
|
||||
Reference in New Issue
Block a user