Files
poky/meta/lib/oeqa/runtime/_qemutiny.py
Lucian Musat 3d1106ea4b 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>
2015-04-10 18:10:27 +01: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!")