From: Lucian Musat Date: Thu, 9 Apr 2015 08:08:12 +0000 (+0300) Subject: oeqa/runtime: Boot test for poky-tiny. X-Git-Tag: 2015-10~2229 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=4d3574e7fe5353b4dbbf5266a8b950b57542a743;p=openembedded-core.git oeqa/runtime: Boot test for poky-tiny. Bug 6705. Signed-off-by: Lucian Musat Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/runtime/_qemutiny.py b/meta/lib/oeqa/runtime/_qemutiny.py new file mode 100644 index 0000000000..a3c29f3572 --- /dev/null +++ b/meta/lib/oeqa/runtime/_qemutiny.py @@ -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!") \ No newline at end of file